diff --git a/src/fuzzfetch/fetch.py b/src/fuzzfetch/fetch.py index d5f074bf..8e35058b 100644 --- a/src/fuzzfetch/fetch.py +++ b/src/fuzzfetch/fetch.py @@ -197,8 +197,7 @@ def auto_name_prefix(self): class BuildTask(object): """Class for storing TaskCluster build information""" - TASKCLUSTER_APIS = ('https://firefox-ci-tc.services.mozilla.com/api/%s/v1', - 'https://%s.taskcluster.net/v1',) + TASKCLUSTER_API = 'https://firefox-ci-tc.services.mozilla.com/api/%s/v1' RE_DATE = re.compile(r'^\d{4}-\d{2}-\d{2}$') RE_REV = re.compile(r'^([0-9A-F]{12}|[0-9A-F]{40})$', re.IGNORECASE) @@ -250,7 +249,7 @@ def iterall(cls, build, branch, flags, platform=None): build = HgRevision(build, branch).hash flag_str = flags.build_string() task_paths = tuple(path + flag_str for path in cls._revision_paths(build.lower(), branch, target_platform)) - task_template_paths = itertools.product(cls.TASKCLUSTER_APIS, task_paths) + task_template_paths = itertools.product((cls.TASKCLUSTER_API,), task_paths) elif build == 'latest': if branch in {'autoland', 'try'}: @@ -259,16 +258,13 @@ def iterall(cls, build, branch, flags, platform=None): namespace = 'gecko.v2.mozilla-' + branch + '.latest' product = 'mobile' if 'android' in target_platform else 'firefox' task_path = '/task/%s.%s.%s%s' % (namespace, product, target_platform, flags.build_string()) - task_template_paths = ((cls.TASKCLUSTER_APIS[0], task_path),) + task_template_paths = ((cls.TASKCLUSTER_API, task_path),) else: # try to use build argument directly as a namespace task_path = '/task/' + build is_namespace = True - if '.latest' in build: - task_template_paths = ((cls.TASKCLUSTER_APIS[0], task_path),) - else: - task_template_paths = itertools.product(cls.TASKCLUSTER_APIS, (task_path,)) + task_template_paths = ((cls.TASKCLUSTER_API, task_path),) for (template_path, try_wo_opt) in itertools.product(task_template_paths, (False, True)): @@ -305,27 +301,19 @@ def _pushdate_template_paths(cls, pushdate, branch, target_platform): if branch not in {'autoland', 'try'}: branch = 'mozilla-' + branch path = '/namespaces/gecko.v2.' + branch + '.pushdate.' + pushdate - date_found = False - last_exc = None - - for template in cls.TASKCLUSTER_APIS: - index_base = template % ('index',) - url = index_base + path - try: - base = HTTP_SESSION.post(url, json={}) - base.raise_for_status() - except requests.exceptions.RequestException as exc: - last_exc = exc - continue - date_found = True - product = 'mobile' if 'android' in target_platform else 'firefox' - json = base.json() - for namespace in sorted(json['namespaces'], key=lambda x: x['name']): - yield (template, '/task/' + namespace['namespace'] + '.' + product + '.' + target_platform) + index_base = cls.TASKCLUSTER_API % ('index',) + url = index_base + path + try: + base = HTTP_SESSION.post(url, json={}) + base.raise_for_status() + except requests.exceptions.RequestException as exc: + raise FetcherException(exc) - if not date_found: - raise FetcherException(last_exc) + product = 'mobile' if 'android' in target_platform else 'firefox' + json = base.json() + for namespace in sorted(json['namespaces'], key=lambda x: x['name']): + yield cls.TASKCLUSTER_API, '/task/' + namespace['namespace'] + '.' + product + '.' + target_platform @classmethod def _revision_paths(cls, rev, branch, target_platform): diff --git a/tests/conftest.py b/tests/conftest.py index 4e0d07b3..0e8d29c3 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -25,7 +25,6 @@ MOCK_HOSTS = { "firefoxci": 'https://firefox-ci-tc.services.mozilla.com', "hg": 'https://hg.mozilla.org', - "index": 'https://index.taskcluster.net', "product-details": 'https://product-details.mozilla.org', "queue": 'https://queue.taskcluster.net', } @@ -70,9 +69,9 @@ def _cache_requests(request, context): while folder.resolve() != CACHE_PATH: if folder.is_file(): # need to rename - tmp_folder = folder.parent / folder.name + '.tmp' + tmp_folder = folder.parent / (folder.name + '.tmp') folder.rename(tmp_folder) - folder.mkdir(parents=True) + path.parent.mkdir(parents=True) tmp_folder.rename(folder / '.get') break folder = folder.parent diff --git a/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.mozilla-central.pushdate.2019.11.14 b/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.mozilla-central.pushdate.2019.11.06 similarity index 100% rename from tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.mozilla-central.pushdate.2019.11.14 rename to tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.mozilla-central.pushdate.2019.11.06 diff --git a/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.mozilla-central.pushdate.2019.11.07 b/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.mozilla-central.pushdate.2019.11.07 new file mode 100644 index 00000000..3590ba64 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.mozilla-central.pushdate.2019.11.07 @@ -0,0 +1,19 @@ +{ + "namespaces": [ + { + "namespace": "gecko.v2.mozilla-central.pushdate.2019.11.07.20191107015224", + "name": "20191107015224", + "expires": "2020-11-08T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.mozilla-central.pushdate.2019.11.07.20191107230801", + "name": "20191107230801", + "expires": "2020-11-09T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.mozilla-central.pushdate.2019.11.07.latest", + "name": "latest", + "expires": "2020-11-08T00:00:00.000Z" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.mozilla-central.pushdate.2019.11.12 b/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.mozilla-central.pushdate.2019.11.12 deleted file mode 100644 index 2c3f1091..00000000 --- a/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.mozilla-central.pushdate.2019.11.12 +++ /dev/null @@ -1,19 +0,0 @@ -{ - "namespaces": [ - { - "namespace": "gecko.v2.mozilla-central.pushdate.2019.11.12.20191112094307", - "name": "20191112094307", - "expires": "2020-11-14T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.mozilla-central.pushdate.2019.11.12.20191112214946", - "name": "20191112214946", - "expires": "2020-11-14T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.mozilla-central.pushdate.2019.11.12.latest", - "name": "latest", - "expires": "2020-11-13T00:00:00.000Z" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.mozilla-central.pushdate.2019.11.13 b/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.mozilla-central.pushdate.2019.11.13 deleted file mode 100644 index f68443d9..00000000 --- a/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.mozilla-central.pushdate.2019.11.13 +++ /dev/null @@ -1,19 +0,0 @@ -{ - "namespaces": [ - { - "namespace": "gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959", - "name": "20191113044959", - "expires": "2020-11-14T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.mozilla-central.pushdate.2019.11.13.20191113095525", - "name": "20191113095525", - "expires": "2020-11-15T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.mozilla-central.pushdate.2019.11.13.latest", - "name": "latest", - "expires": "2020-11-14T00:00:00.000Z" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.mozilla-central.pushdate.2019.11.15 b/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.mozilla-central.pushdate.2019.11.15 deleted file mode 100644 index eb4f85a7..00000000 --- a/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.mozilla-central.pushdate.2019.11.15 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "namespaces": [] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.mozilla-central.pushdate.2019.12.17 b/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.mozilla-central.pushdate.2019.12.17 deleted file mode 100644 index f08a5419..00000000 --- a/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.mozilla-central.pushdate.2019.12.17 +++ /dev/null @@ -1,24 +0,0 @@ -{ - "namespaces": [ - { - "namespace": "gecko.v2.mozilla-central.pushdate.2019.12.17.20191217041353", - "name": "20191217041353", - "expires": "2020-12-18T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.mozilla-central.pushdate.2019.12.17.20191217104440", - "name": "20191217104440", - "expires": "2020-12-19T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.mozilla-central.pushdate.2019.12.17.20191217161753", - "name": "20191217161753", - "expires": "2020-12-18T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.mozilla-central.pushdate.2019.12.17.latest", - "name": "latest", - "expires": "2020-12-18T00:00:00.000Z" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.mozilla-central.pushdate.2020.07.27 b/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.mozilla-central.pushdate.2020.07.27 new file mode 100644 index 00000000..98ef8f6e --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.mozilla-central.pushdate.2020.07.27 @@ -0,0 +1,19 @@ +{ + "namespaces": [ + { + "namespace": "gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000", + "name": "20200727033000", + "expires": "2021-07-30T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.mozilla-central.pushdate.2020.07.27.20200727095125", + "name": "20200727095125", + "expires": "2021-07-30T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.mozilla-central.pushdate.2020.07.27.latest", + "name": "latest", + "expires": "2021-07-29T00:00:00.000Z" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.mozilla-esr60.pushdate.2019.10.14 b/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.mozilla-esr60.pushdate.2019.10.14 deleted file mode 100644 index eb4f85a7..00000000 --- a/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.mozilla-esr60.pushdate.2019.10.14 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "namespaces": [] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.mozilla-esr68.pushdate.2019.08.13 b/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.mozilla-esr68.pushdate.2019.08.13 deleted file mode 100644 index eb4f85a7..00000000 --- a/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.mozilla-esr68.pushdate.2019.08.13 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "namespaces": [] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.mozilla-esr68.pushdate.2019.11.12 b/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.mozilla-esr68.pushdate.2019.11.12 deleted file mode 100644 index 942b3a56..00000000 --- a/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.mozilla-esr68.pushdate.2019.11.12 +++ /dev/null @@ -1,74 +0,0 @@ -{ - "namespaces": [ - { - "namespace": "gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112002030", - "name": "20191112002030", - "expires": "2020-11-14T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112013613", - "name": "20191112013613", - "expires": "2020-11-14T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804", - "name": "20191112030804", - "expires": "2020-11-14T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112043005", - "name": "20191112043005", - "expires": "2020-11-14T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112044646", - "name": "20191112044646", - "expires": "2020-11-14T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112105856", - "name": "20191112105856", - "expires": "2020-11-14T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112110230", - "name": "20191112110230", - "expires": "2020-11-14T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112164131", - "name": "20191112164131", - "expires": "2020-11-14T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112164452", - "name": "20191112164452", - "expires": "2020-11-14T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112195858", - "name": "20191112195858", - "expires": "2020-11-14T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112200044", - "name": "20191112200044", - "expires": "2020-11-14T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112221120", - "name": "20191112221120", - "expires": "2020-11-14T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112222307", - "name": "20191112222307", - "expires": "2020-11-14T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112222920", - "name": "20191112222920", - "expires": "2020-11-14T00:00:00.000Z" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.try.pushdate.2019.11.13 b/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.try.pushdate.2019.11.13 deleted file mode 100644 index 56c07a83..00000000 --- a/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.try.pushdate.2019.11.13 +++ /dev/null @@ -1,1239 +0,0 @@ -{ - "namespaces": [ - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113000048", - "name": "20191113000048", - "expires": "2019-12-14T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113000223", - "name": "20191113000223", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113000249", - "name": "20191113000249", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113000351", - "name": "20191113000351", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113000405", - "name": "20191113000405", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113000418", - "name": "20191113000418", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113000632", - "name": "20191113000632", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113001416", - "name": "20191113001416", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113001937", - "name": "20191113001937", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113002321", - "name": "20191113002321", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113002411", - "name": "20191113002411", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113002513", - "name": "20191113002513", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113002951", - "name": "20191113002951", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113003048", - "name": "20191113003048", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113003851", - "name": "20191113003851", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113004300", - "name": "20191113004300", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113005531", - "name": "20191113005531", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113005554", - "name": "20191113005554", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113005725", - "name": "20191113005725", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113005732", - "name": "20191113005732", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113010722", - "name": "20191113010722", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113011504", - "name": "20191113011504", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113011514", - "name": "20191113011514", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113012143", - "name": "20191113012143", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113012401", - "name": "20191113012401", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113012517", - "name": "20191113012517", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113012605", - "name": "20191113012605", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113013453", - "name": "20191113013453", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113013823", - "name": "20191113013823", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113014220", - "name": "20191113014220", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113014559", - "name": "20191113014559", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113014828", - "name": "20191113014828", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113015243", - "name": "20191113015243", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113015322", - "name": "20191113015322", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113015430", - "name": "20191113015430", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113015522", - "name": "20191113015522", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113020012", - "name": "20191113020012", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113020135", - "name": "20191113020135", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113020225", - "name": "20191113020225", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113020319", - "name": "20191113020319", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113021010", - "name": "20191113021010", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113022359", - "name": "20191113022359", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113023734", - "name": "20191113023734", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113023844", - "name": "20191113023844", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113024032", - "name": "20191113024032", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113024625", - "name": "20191113024625", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113024754", - "name": "20191113024754", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113024844", - "name": "20191113024844", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113025733", - "name": "20191113025733", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113031407", - "name": "20191113031407", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113031458", - "name": "20191113031458", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113031637", - "name": "20191113031637", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113031725", - "name": "20191113031725", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113033119", - "name": "20191113033119", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113033456", - "name": "20191113033456", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113033553", - "name": "20191113033553", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113033707", - "name": "20191113033707", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113034500", - "name": "20191113034500", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113034611", - "name": "20191113034611", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113034733", - "name": "20191113034733", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113034820", - "name": "20191113034820", - "expires": "2019-12-14T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113034850", - "name": "20191113034850", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113035700", - "name": "20191113035700", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113041253", - "name": "20191113041253", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113041502", - "name": "20191113041502", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113044036", - "name": "20191113044036", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113044741", - "name": "20191113044741", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113045343", - "name": "20191113045343", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113045814", - "name": "20191113045814", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113045858", - "name": "20191113045858", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113045940", - "name": "20191113045940", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113050050", - "name": "20191113050050", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113050203", - "name": "20191113050203", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113050316", - "name": "20191113050316", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113050421", - "name": "20191113050421", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113050528", - "name": "20191113050528", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113050559", - "name": "20191113050559", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113051012", - "name": "20191113051012", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113051334", - "name": "20191113051334", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113051603", - "name": "20191113051603", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113051613", - "name": "20191113051613", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113054434", - "name": "20191113054434", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113060104", - "name": "20191113060104", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113062707", - "name": "20191113062707", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113062826", - "name": "20191113062826", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113063320", - "name": "20191113063320", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113063413", - "name": "20191113063413", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113064729", - "name": "20191113064729", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113065023", - "name": "20191113065023", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113065457", - "name": "20191113065457", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113070934", - "name": "20191113070934", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113071647", - "name": "20191113071647", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113071824", - "name": "20191113071824", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113072136", - "name": "20191113072136", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113072532", - "name": "20191113072532", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113072726", - "name": "20191113072726", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113073126", - "name": "20191113073126", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113073747", - "name": "20191113073747", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113074022", - "name": "20191113074022", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113074403", - "name": "20191113074403", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113075901", - "name": "20191113075901", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113080417", - "name": "20191113080417", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113081132", - "name": "20191113081132", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113081434", - "name": "20191113081434", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113081539", - "name": "20191113081539", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113082047", - "name": "20191113082047", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113082134", - "name": "20191113082134", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113082507", - "name": "20191113082507", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113083403", - "name": "20191113083403", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113084050", - "name": "20191113084050", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113084741", - "name": "20191113084741", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113084824", - "name": "20191113084824", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113084847", - "name": "20191113084847", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113084916", - "name": "20191113084916", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113085025", - "name": "20191113085025", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113085612", - "name": "20191113085612", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113085642", - "name": "20191113085642", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113085714", - "name": "20191113085714", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113085820", - "name": "20191113085820", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113085930", - "name": "20191113085930", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113090045", - "name": "20191113090045", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113090100", - "name": "20191113090100", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113090206", - "name": "20191113090206", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113090326", - "name": "20191113090326", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113090355", - "name": "20191113090355", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113090509", - "name": "20191113090509", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113090547", - "name": "20191113090547", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113090637", - "name": "20191113090637", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113090809", - "name": "20191113090809", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113090942", - "name": "20191113090942", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113091018", - "name": "20191113091018", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113091121", - "name": "20191113091121", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113091214", - "name": "20191113091214", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113091302", - "name": "20191113091302", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113091446", - "name": "20191113091446", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113091636", - "name": "20191113091636", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113091828", - "name": "20191113091828", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113091936", - "name": "20191113091936", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113092023", - "name": "20191113092023", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113092223", - "name": "20191113092223", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113092426", - "name": "20191113092426", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113092636", - "name": "20191113092636", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113092721", - "name": "20191113092721", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113092809", - "name": "20191113092809", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113092946", - "name": "20191113092946", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113093310", - "name": "20191113093310", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113095819", - "name": "20191113095819", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113095930", - "name": "20191113095930", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113100008", - "name": "20191113100008", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113100511", - "name": "20191113100511", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113101113", - "name": "20191113101113", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113101357", - "name": "20191113101357", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113102301", - "name": "20191113102301", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113103933", - "name": "20191113103933", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113103957", - "name": "20191113103957", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113104253", - "name": "20191113104253", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113104312", - "name": "20191113104312", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113104447", - "name": "20191113104447", - "expires": "2019-12-14T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113104822", - "name": "20191113104822", - "expires": "2019-12-14T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113104842", - "name": "20191113104842", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113105534", - "name": "20191113105534", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113110058", - "name": "20191113110058", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113110222", - "name": "20191113110222", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113110357", - "name": "20191113110357", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113110733", - "name": "20191113110733", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113110950", - "name": "20191113110950", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113111500", - "name": "20191113111500", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113111522", - "name": "20191113111522", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113111859", - "name": "20191113111859", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113111951", - "name": "20191113111951", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113112119", - "name": "20191113112119", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113112902", - "name": "20191113112902", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113113126", - "name": "20191113113126", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113113523", - "name": "20191113113523", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113113749", - "name": "20191113113749", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113113951", - "name": "20191113113951", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113114240", - "name": "20191113114240", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113114251", - "name": "20191113114251", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113114421", - "name": "20191113114421", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113114833", - "name": "20191113114833", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113115408", - "name": "20191113115408", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113115444", - "name": "20191113115444", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113115604", - "name": "20191113115604", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113115625", - "name": "20191113115625", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113115959", - "name": "20191113115959", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113120310", - "name": "20191113120310", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113120630", - "name": "20191113120630", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113121557", - "name": "20191113121557", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113130552", - "name": "20191113130552", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113131843", - "name": "20191113131843", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113132052", - "name": "20191113132052", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113132628", - "name": "20191113132628", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113132711", - "name": "20191113132711", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113134337", - "name": "20191113134337", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113134716", - "name": "20191113134716", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113135142", - "name": "20191113135142", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113135525", - "name": "20191113135525", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113135609", - "name": "20191113135609", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113135806", - "name": "20191113135806", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113135817", - "name": "20191113135817", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113135826", - "name": "20191113135826", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113135838", - "name": "20191113135838", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113135903", - "name": "20191113135903", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113135937", - "name": "20191113135937", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113140055", - "name": "20191113140055", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113140458", - "name": "20191113140458", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113140935", - "name": "20191113140935", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113141726", - "name": "20191113141726", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113142032", - "name": "20191113142032", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113142230", - "name": "20191113142230", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113142416", - "name": "20191113142416", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113142707", - "name": "20191113142707", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113142724", - "name": "20191113142724", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113142836", - "name": "20191113142836", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113143310", - "name": "20191113143310", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113143946", - "name": "20191113143946", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113144032", - "name": "20191113144032", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113144052", - "name": "20191113144052", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113144129", - "name": "20191113144129", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113144417", - "name": "20191113144417", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113144508", - "name": "20191113144508", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113145541", - "name": "20191113145541", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113150326", - "name": "20191113150326", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113150854", - "name": "20191113150854", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113151539", - "name": "20191113151539", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113152045", - "name": "20191113152045", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113152255", - "name": "20191113152255", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113152610", - "name": "20191113152610", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113153248", - "name": "20191113153248", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113153342", - "name": "20191113153342", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113153433", - "name": "20191113153433", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113153525", - "name": "20191113153525", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113153549", - "name": "20191113153549", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113153916", - "name": "20191113153916", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113154009", - "name": "20191113154009", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113154117", - "name": "20191113154117", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113154133", - "name": "20191113154133", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113154209", - "name": "20191113154209", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113154313", - "name": "20191113154313", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113154402", - "name": "20191113154402", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113154538", - "name": "20191113154538", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113154626", - "name": "20191113154626", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113154944", - "name": "20191113154944", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113155136", - "name": "20191113155136", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113161120", - "name": "20191113161120", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113161527", - "name": "20191113161527", - "expires": "2019-12-13T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.11.13.latest", - "name": "latest", - "expires": "2019-12-13T00:00:00.000Z" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.try.pushdate.2019.12.17 b/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.try.pushdate.2019.12.17 deleted file mode 100644 index fdf4293f..00000000 --- a/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.try.pushdate.2019.12.17 +++ /dev/null @@ -1,1029 +0,0 @@ -{ - "namespaces": [ - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217000111", - "name": "20191217000111", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217001101", - "name": "20191217001101", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217001554", - "name": "20191217001554", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217001704", - "name": "20191217001704", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217001730", - "name": "20191217001730", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217001833", - "name": "20191217001833", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217002015", - "name": "20191217002015", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217002027", - "name": "20191217002027", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217002107", - "name": "20191217002107", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217002136", - "name": "20191217002136", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217002759", - "name": "20191217002759", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217002954", - "name": "20191217002954", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217003628", - "name": "20191217003628", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217004253", - "name": "20191217004253", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217004500", - "name": "20191217004500", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217005128", - "name": "20191217005128", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217005844", - "name": "20191217005844", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217010408", - "name": "20191217010408", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217010534", - "name": "20191217010534", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217011835", - "name": "20191217011835", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217012942", - "name": "20191217012942", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217013942", - "name": "20191217013942", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217014919", - "name": "20191217014919", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217015151", - "name": "20191217015151", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217015204", - "name": "20191217015204", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217015652", - "name": "20191217015652", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217020014", - "name": "20191217020014", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217020509", - "name": "20191217020509", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217020912", - "name": "20191217020912", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217021925", - "name": "20191217021925", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217025303", - "name": "20191217025303", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217030833", - "name": "20191217030833", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217031859", - "name": "20191217031859", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217032017", - "name": "20191217032017", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217033805", - "name": "20191217033805", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217034106", - "name": "20191217034106", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217035242", - "name": "20191217035242", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217042843", - "name": "20191217042843", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217043136", - "name": "20191217043136", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217043407", - "name": "20191217043407", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217043600", - "name": "20191217043600", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217043904", - "name": "20191217043904", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217044634", - "name": "20191217044634", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217044753", - "name": "20191217044753", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217044935", - "name": "20191217044935", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217050233", - "name": "20191217050233", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217050932", - "name": "20191217050932", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217051307", - "name": "20191217051307", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217052109", - "name": "20191217052109", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217052522", - "name": "20191217052522", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217053538", - "name": "20191217053538", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217055953", - "name": "20191217055953", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217060627", - "name": "20191217060627", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217060923", - "name": "20191217060923", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217062432", - "name": "20191217062432", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217064234", - "name": "20191217064234", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217070720", - "name": "20191217070720", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217073047", - "name": "20191217073047", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217074334", - "name": "20191217074334", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217074722", - "name": "20191217074722", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217080043", - "name": "20191217080043", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217084406", - "name": "20191217084406", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217100650", - "name": "20191217100650", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217100833", - "name": "20191217100833", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217104249", - "name": "20191217104249", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217104609", - "name": "20191217104609", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217105511", - "name": "20191217105511", - "expires": "2020-01-17T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217105754", - "name": "20191217105754", - "expires": "2020-01-17T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217105936", - "name": "20191217105936", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217110934", - "name": "20191217110934", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217111333", - "name": "20191217111333", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217111855", - "name": "20191217111855", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217111936", - "name": "20191217111936", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217112318", - "name": "20191217112318", - "expires": "2020-01-17T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217112420", - "name": "20191217112420", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217112634", - "name": "20191217112634", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217112804", - "name": "20191217112804", - "expires": "2020-01-17T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217113438", - "name": "20191217113438", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217114241", - "name": "20191217114241", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217120312", - "name": "20191217120312", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217121356", - "name": "20191217121356", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217122652", - "name": "20191217122652", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217123611", - "name": "20191217123611", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217123839", - "name": "20191217123839", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217124258", - "name": "20191217124258", - "expires": "2020-01-17T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217130400", - "name": "20191217130400", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217130958", - "name": "20191217130958", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217131015", - "name": "20191217131015", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217131059", - "name": "20191217131059", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217132638", - "name": "20191217132638", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217132714", - "name": "20191217132714", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217133442", - "name": "20191217133442", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217134144", - "name": "20191217134144", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217134207", - "name": "20191217134207", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217134704", - "name": "20191217134704", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217135452", - "name": "20191217135452", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217140156", - "name": "20191217140156", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217140345", - "name": "20191217140345", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217141156", - "name": "20191217141156", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217141232", - "name": "20191217141232", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217141311", - "name": "20191217141311", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217142118", - "name": "20191217142118", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217143207", - "name": "20191217143207", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217143617", - "name": "20191217143617", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217145941", - "name": "20191217145941", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217145953", - "name": "20191217145953", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217150916", - "name": "20191217150916", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217150935", - "name": "20191217150935", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217151116", - "name": "20191217151116", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217151146", - "name": "20191217151146", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217152004", - "name": "20191217152004", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217152117", - "name": "20191217152117", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217152257", - "name": "20191217152257", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217152640", - "name": "20191217152640", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217152730", - "name": "20191217152730", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217152809", - "name": "20191217152809", - "expires": "2020-01-17T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217154549", - "name": "20191217154549", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217154601", - "name": "20191217154601", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217154643", - "name": "20191217154643", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217154708", - "name": "20191217154708", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217154723", - "name": "20191217154723", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217155157", - "name": "20191217155157", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217155802", - "name": "20191217155802", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217155915", - "name": "20191217155915", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217160251", - "name": "20191217160251", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217160336", - "name": "20191217160336", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217160438", - "name": "20191217160438", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217161033", - "name": "20191217161033", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217161112", - "name": "20191217161112", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217161716", - "name": "20191217161716", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217161834", - "name": "20191217161834", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217162144", - "name": "20191217162144", - "expires": "2020-01-17T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217162356", - "name": "20191217162356", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217162620", - "name": "20191217162620", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217162924", - "name": "20191217162924", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217163607", - "name": "20191217163607", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217163655", - "name": "20191217163655", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217163910", - "name": "20191217163910", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217164006", - "name": "20191217164006", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217164332", - "name": "20191217164332", - "expires": "2020-01-17T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217164418", - "name": "20191217164418", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217164624", - "name": "20191217164624", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217165013", - "name": "20191217165013", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217165506", - "name": "20191217165506", - "expires": "2020-01-17T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217165841", - "name": "20191217165841", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217170043", - "name": "20191217170043", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217170506", - "name": "20191217170506", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217170613", - "name": "20191217170613", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217170809", - "name": "20191217170809", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217171627", - "name": "20191217171627", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217172001", - "name": "20191217172001", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217172748", - "name": "20191217172748", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217172940", - "name": "20191217172940", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217173150", - "name": "20191217173150", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217173618", - "name": "20191217173618", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217173949", - "name": "20191217173949", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217174733", - "name": "20191217174733", - "expires": "2020-01-17T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217174912", - "name": "20191217174912", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217175128", - "name": "20191217175128", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217175444", - "name": "20191217175444", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217175603", - "name": "20191217175603", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217180357", - "name": "20191217180357", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217180553", - "name": "20191217180553", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217180619", - "name": "20191217180619", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217180704", - "name": "20191217180704", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217180747", - "name": "20191217180747", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217180930", - "name": "20191217180930", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217181002", - "name": "20191217181002", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217181439", - "name": "20191217181439", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217182030", - "name": "20191217182030", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217182129", - "name": "20191217182129", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217182212", - "name": "20191217182212", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217182623", - "name": "20191217182623", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217182645", - "name": "20191217182645", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217183303", - "name": "20191217183303", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217184302", - "name": "20191217184302", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217184622", - "name": "20191217184622", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217184856", - "name": "20191217184856", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217185228", - "name": "20191217185228", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217185556", - "name": "20191217185556", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217185609", - "name": "20191217185609", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217185740", - "name": "20191217185740", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217185826", - "name": "20191217185826", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217185852", - "name": "20191217185852", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217185918", - "name": "20191217185918", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217185951", - "name": "20191217185951", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217190300", - "name": "20191217190300", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217191557", - "name": "20191217191557", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217191615", - "name": "20191217191615", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217191703", - "name": "20191217191703", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217191807", - "name": "20191217191807", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217191858", - "name": "20191217191858", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217192157", - "name": "20191217192157", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217192219", - "name": "20191217192219", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217192246", - "name": "20191217192246", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217192516", - "name": "20191217192516", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217192752", - "name": "20191217192752", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217193119", - "name": "20191217193119", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217193439", - "name": "20191217193439", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217194250", - "name": "20191217194250", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217194939", - "name": "20191217194939", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217195035", - "name": "20191217195035", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217195227", - "name": "20191217195227", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217200221", - "name": "20191217200221", - "expires": "2020-01-16T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.try.pushdate.2019.12.17.latest", - "name": "latest", - "expires": "2020-01-17T00:00:00.000Z" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.try.pushdate.2020.07.17 b/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.try.pushdate.2020.07.17 new file mode 100644 index 00000000..a657c283 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.try.pushdate.2020.07.17 @@ -0,0 +1,1009 @@ +{ + "namespaces": [ + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717002710", + "name": "20200717002710", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717003121", + "name": "20200717003121", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717011000", + "name": "20200717011000", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717011215", + "name": "20200717011215", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717012143", + "name": "20200717012143", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717014814", + "name": "20200717014814", + "expires": "2020-08-17T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717015331", + "name": "20200717015331", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717015421", + "name": "20200717015421", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717015552", + "name": "20200717015552", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717020705", + "name": "20200717020705", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717020903", + "name": "20200717020903", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717021551", + "name": "20200717021551", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717022015", + "name": "20200717022015", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717022158", + "name": "20200717022158", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717022528", + "name": "20200717022528", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717022952", + "name": "20200717022952", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717025618", + "name": "20200717025618", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717025835", + "name": "20200717025835", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717031028", + "name": "20200717031028", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717031308", + "name": "20200717031308", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717031700", + "name": "20200717031700", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717033337", + "name": "20200717033337", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717035231", + "name": "20200717035231", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717041750", + "name": "20200717041750", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717042221", + "name": "20200717042221", + "expires": "2020-08-17T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717044954", + "name": "20200717044954", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717045056", + "name": "20200717045056", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717051532", + "name": "20200717051532", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717054410", + "name": "20200717054410", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717064116", + "name": "20200717064116", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717064255", + "name": "20200717064255", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717065218", + "name": "20200717065218", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717071511", + "name": "20200717071511", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717073254", + "name": "20200717073254", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717075112", + "name": "20200717075112", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717092527", + "name": "20200717092527", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717092730", + "name": "20200717092730", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717092936", + "name": "20200717092936", + "expires": "2020-08-17T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717093950", + "name": "20200717093950", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717095802", + "name": "20200717095802", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717100011", + "name": "20200717100011", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717100239", + "name": "20200717100239", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717101426", + "name": "20200717101426", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717102019", + "name": "20200717102019", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717102537", + "name": "20200717102537", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717103405", + "name": "20200717103405", + "expires": "2020-08-17T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717103632", + "name": "20200717103632", + "expires": "2020-08-17T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717104118", + "name": "20200717104118", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717105407", + "name": "20200717105407", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717110316", + "name": "20200717110316", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717110627", + "name": "20200717110627", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717111245", + "name": "20200717111245", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717112006", + "name": "20200717112006", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717112331", + "name": "20200717112331", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717114401", + "name": "20200717114401", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717115751", + "name": "20200717115751", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717122229", + "name": "20200717122229", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717123351", + "name": "20200717123351", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717123526", + "name": "20200717123526", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717124613", + "name": "20200717124613", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717125829", + "name": "20200717125829", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717130154", + "name": "20200717130154", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717130525", + "name": "20200717130525", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717130553", + "name": "20200717130553", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717131005", + "name": "20200717131005", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717131048", + "name": "20200717131048", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717131138", + "name": "20200717131138", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717131430", + "name": "20200717131430", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717133100", + "name": "20200717133100", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717133201", + "name": "20200717133201", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717133252", + "name": "20200717133252", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717133636", + "name": "20200717133636", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717133702", + "name": "20200717133702", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717134514", + "name": "20200717134514", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717140153", + "name": "20200717140153", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717140555", + "name": "20200717140555", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717141344", + "name": "20200717141344", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717141828", + "name": "20200717141828", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717141954", + "name": "20200717141954", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717142211", + "name": "20200717142211", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717142358", + "name": "20200717142358", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717142815", + "name": "20200717142815", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717142902", + "name": "20200717142902", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717143332", + "name": "20200717143332", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717143503", + "name": "20200717143503", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717143558", + "name": "20200717143558", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717143655", + "name": "20200717143655", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717144451", + "name": "20200717144451", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717145045", + "name": "20200717145045", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717145744", + "name": "20200717145744", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717145917", + "name": "20200717145917", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717150015", + "name": "20200717150015", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717150426", + "name": "20200717150426", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717150822", + "name": "20200717150822", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717150932", + "name": "20200717150932", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717150957", + "name": "20200717150957", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717151117", + "name": "20200717151117", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717151902", + "name": "20200717151902", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717152234", + "name": "20200717152234", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717152319", + "name": "20200717152319", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717152745", + "name": "20200717152745", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717153204", + "name": "20200717153204", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717153438", + "name": "20200717153438", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717153731", + "name": "20200717153731", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717153803", + "name": "20200717153803", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717153853", + "name": "20200717153853", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717154026", + "name": "20200717154026", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717154115", + "name": "20200717154115", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717154531", + "name": "20200717154531", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717155055", + "name": "20200717155055", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717155201", + "name": "20200717155201", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717155447", + "name": "20200717155447", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717160205", + "name": "20200717160205", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717160413", + "name": "20200717160413", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717160707", + "name": "20200717160707", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717161018", + "name": "20200717161018", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717161113", + "name": "20200717161113", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717161300", + "name": "20200717161300", + "expires": "2020-08-17T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717161551", + "name": "20200717161551", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717161603", + "name": "20200717161603", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717161638", + "name": "20200717161638", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717161824", + "name": "20200717161824", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717162030", + "name": "20200717162030", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717162747", + "name": "20200717162747", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717163648", + "name": "20200717163648", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717165424", + "name": "20200717165424", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717170752", + "name": "20200717170752", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717171224", + "name": "20200717171224", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717171901", + "name": "20200717171901", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717172525", + "name": "20200717172525", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717172726", + "name": "20200717172726", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717173019", + "name": "20200717173019", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717173140", + "name": "20200717173140", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717174231", + "name": "20200717174231", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717174426", + "name": "20200717174426", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717174839", + "name": "20200717174839", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717175009", + "name": "20200717175009", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717180101", + "name": "20200717180101", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717180223", + "name": "20200717180223", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717180927", + "name": "20200717180927", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717181206", + "name": "20200717181206", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717181503", + "name": "20200717181503", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717181650", + "name": "20200717181650", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717181808", + "name": "20200717181808", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717182355", + "name": "20200717182355", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717183429", + "name": "20200717183429", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717183616", + "name": "20200717183616", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717184037", + "name": "20200717184037", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717184350", + "name": "20200717184350", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717191245", + "name": "20200717191245", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717191657", + "name": "20200717191657", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717192755", + "name": "20200717192755", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717193152", + "name": "20200717193152", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717194319", + "name": "20200717194319", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717194402", + "name": "20200717194402", + "expires": "2020-08-17T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717194832", + "name": "20200717194832", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717195414", + "name": "20200717195414", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717195728", + "name": "20200717195728", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717200414", + "name": "20200717200414", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717200556", + "name": "20200717200556", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717200719", + "name": "20200717200719", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717201048", + "name": "20200717201048", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717202139", + "name": "20200717202139", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717202648", + "name": "20200717202648", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717203343", + "name": "20200717203343", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717204728", + "name": "20200717204728", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717204829", + "name": "20200717204829", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717205420", + "name": "20200717205420", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717210728", + "name": "20200717210728", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717210839", + "name": "20200717210839", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717211155", + "name": "20200717211155", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717212205", + "name": "20200717212205", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717213252", + "name": "20200717213252", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717213714", + "name": "20200717213714", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717214524", + "name": "20200717214524", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717215049", + "name": "20200717215049", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717215848", + "name": "20200717215848", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717220127", + "name": "20200717220127", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717220239", + "name": "20200717220239", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717221430", + "name": "20200717221430", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717222529", + "name": "20200717222529", + "expires": "2020-08-17T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717222919", + "name": "20200717222919", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717222931", + "name": "20200717222931", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717222942", + "name": "20200717222942", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717223201", + "name": "20200717223201", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717223451", + "name": "20200717223451", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717223501", + "name": "20200717223501", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717223537", + "name": "20200717223537", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717223546", + "name": "20200717223546", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717223559", + "name": "20200717223559", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717224406", + "name": "20200717224406", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717224622", + "name": "20200717224622", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717225226", + "name": "20200717225226", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717230242", + "name": "20200717230242", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717230449", + "name": "20200717230449", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717230544", + "name": "20200717230544", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717231326", + "name": "20200717231326", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717231707", + "name": "20200717231707", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717232245", + "name": "20200717232245", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717234750", + "name": "20200717234750", + "expires": "2020-08-16T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.17.latest", + "name": "latest", + "expires": "2020-08-17T00:00:00.000Z" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.try.pushdate.2020.07.27 b/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.try.pushdate.2020.07.27 new file mode 100644 index 00000000..5f0f3259 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/namespaces/gecko.v2.try.pushdate.2020.07.27 @@ -0,0 +1,299 @@ +{ + "namespaces": [ + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727000601", + "name": "20200727000601", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727003535", + "name": "20200727003535", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727004544", + "name": "20200727004544", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727014148", + "name": "20200727014148", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727014755", + "name": "20200727014755", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727023128", + "name": "20200727023128", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727024623", + "name": "20200727024623", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727034721", + "name": "20200727034721", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727042419", + "name": "20200727042419", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727044231", + "name": "20200727044231", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727052111", + "name": "20200727052111", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727061843", + "name": "20200727061843", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727062504", + "name": "20200727062504", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727070124", + "name": "20200727070124", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727070200", + "name": "20200727070200", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727070458", + "name": "20200727070458", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727070751", + "name": "20200727070751", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727073604", + "name": "20200727073604", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727080327", + "name": "20200727080327", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727082345", + "name": "20200727082345", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727084313", + "name": "20200727084313", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727085208", + "name": "20200727085208", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727085403", + "name": "20200727085403", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727085511", + "name": "20200727085511", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727090450", + "name": "20200727090450", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727090839", + "name": "20200727090839", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727091726", + "name": "20200727091726", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727092308", + "name": "20200727092308", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727092924", + "name": "20200727092924", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727093619", + "name": "20200727093619", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727095846", + "name": "20200727095846", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727100815", + "name": "20200727100815", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727100842", + "name": "20200727100842", + "expires": "2020-08-27T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727110303", + "name": "20200727110303", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727114430", + "name": "20200727114430", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727114623", + "name": "20200727114623", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727114800", + "name": "20200727114800", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727115338", + "name": "20200727115338", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727120117", + "name": "20200727120117", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727120538", + "name": "20200727120538", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727120721", + "name": "20200727120721", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727121012", + "name": "20200727121012", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727122523", + "name": "20200727122523", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727123219", + "name": "20200727123219", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727124848", + "name": "20200727124848", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727125721", + "name": "20200727125721", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727130733", + "name": "20200727130733", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727130947", + "name": "20200727130947", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727132310", + "name": "20200727132310", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727133309", + "name": "20200727133309", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727133716", + "name": "20200727133716", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727134254", + "name": "20200727134254", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727134318", + "name": "20200727134318", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727134637", + "name": "20200727134637", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727134833", + "name": "20200727134833", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727134956", + "name": "20200727134956", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727135612", + "name": "20200727135612", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727140439", + "name": "20200727140439", + "expires": "2020-08-26T00:00:00.000Z" + }, + { + "namespace": "gecko.v2.try.pushdate.2020.07.27.latest", + "name": "latest", + "expires": "2020-08-26T00:00:00.000Z" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux-debug index de923ad9..51c15ad8 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux-debug +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux-debug @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.mozilla-central.latest.firefox.linux-debug", - "taskId": "BIvkFPceTl2nkO6ClIjvrw", - "rank": 1573638925, + "taskId": "aagfJV-WQXWO03_119KAXw", + "rank": 1595843485, "data": {}, - "expires": "2020-11-12T09:57:05.243Z" + "expires": "2021-07-27T09:55:01.023Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux-opt index cdf6dfca..cee7c23d 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux-opt +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux-opt @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.mozilla-central.latest.firefox.linux-opt", - "taskId": "V5umJtBAQVSxB3DvRaiodw", - "rank": 1573638925, + "taskId": "YqmZbJ9ZS8WiFDRiqLLngA", + "rank": 1595843485, "data": {}, - "expires": "2020-11-12T09:57:04.947Z" + "expires": "2021-07-27T09:55:01.027Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-asan-opt index 96aa2fcd..08a9e006 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-asan-opt +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-asan-opt @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.mozilla-central.latest.firefox.linux64-asan-opt", - "taskId": "Dtt4xKEbSWaLo4cPGGPpfg", - "rank": 1573638925, + "taskId": "doI-yWRFR9eMidgEv73LKA", + "rank": 1595843485, "data": {}, - "expires": "2020-11-12T09:57:05.849Z" + "expires": "2021-07-27T09:55:01.553Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-ccov-fuzzing-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-ccov-fuzzing-opt index da6ab8e0..3fe9e1de 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-ccov-fuzzing-opt +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-ccov-fuzzing-opt @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.mozilla-central.latest.firefox.linux64-ccov-fuzzing-opt", - "taskId": "BY9xme57QG2Op4lj7-DpuQ", - "rank": 1573638925, + "taskId": "WpRCvHWqTT6GFEhNIHQuKw", + "rank": 1595843485, "data": {}, - "expires": "2020-11-12T09:57:03.716Z" + "expires": "2021-07-27T09:55:01.758Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-ccov-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-ccov-opt index b970cf6c..32d4c7f4 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-ccov-opt +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-ccov-opt @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.mozilla-central.latest.firefox.linux64-ccov-opt", - "taskId": "WySN0vRISLay9uB90URIww", + "taskId": "e86rdK-6Q8aS4_OPJ1gf3Q", "rank": 0, "data": {}, - "expires": "2020-11-12T09:57:04.951Z" + "expires": "2021-07-27T09:55:01.711Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-debug index 3240a672..b2a7f159 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-debug +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-debug @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.mozilla-central.latest.firefox.linux64-debug", - "taskId": "Hbj3dhiKQG-0pnjl_9NvUQ", - "rank": 1573638925, + "taskId": "UmQjjcmYRV6xlvDcBmqmxQ", + "rank": 1595843485, "data": {}, - "expires": "2020-11-12T09:57:05.034Z" + "expires": "2021-07-27T09:55:01.508Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-fuzzing-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-fuzzing-asan-opt index 011f5182..8cc2a2a6 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-fuzzing-asan-opt +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-fuzzing-asan-opt @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.mozilla-central.latest.firefox.linux64-fuzzing-asan-opt", - "taskId": "KJsHof7yR7aA9n1-raBZ1w", - "rank": 1573638925, + "taskId": "DWRN2AIISlylhB6e35I6jQ", + "rank": 1595843485, "data": {}, - "expires": "2020-11-12T09:57:03.725Z" + "expires": "2021-07-27T09:55:01.060Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-fuzzing-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-fuzzing-debug index 4940b7d0..2e108a2b 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-fuzzing-debug +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-fuzzing-debug @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.mozilla-central.latest.firefox.linux64-fuzzing-debug", - "taskId": "ezKbjCV5Rd-pr5WgeL44sQ", - "rank": 1573638925, + "taskId": "FwzXYhK4TpupXO6emQzZbA", + "rank": 1595843485, "data": {}, - "expires": "2020-11-12T09:57:05.408Z" + "expires": "2021-07-27T09:55:01.455Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-fuzzing-tsan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-fuzzing-tsan-opt index 6bc39012..375701c8 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-fuzzing-tsan-opt +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-fuzzing-tsan-opt @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.mozilla-central.latest.firefox.linux64-fuzzing-tsan-opt", - "taskId": "ZlOOTdjoSpaqmnU6f0lE3A", - "rank": 1576599473, + "taskId": "ZLg-J4GcQAqBSk4wscC4Zg", + "rank": 1595843485, "data": {}, - "expires": "2020-12-16T16:19:58.413Z" + "expires": "2021-07-27T09:55:01.673Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-opt index 7dcf62c3..f5969502 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-opt +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-opt @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.mozilla-central.latest.firefox.linux64-opt", - "taskId": "dJG9Q-QQTnWD9JUhxCa73w", - "rank": 1573638925, + "taskId": "MJVRUKY9QjeNwlfgb15bZQ", + "rank": 1595843485, "data": {}, - "expires": "2020-11-12T09:57:05.393Z" + "expires": "2021-07-27T09:55:01.491Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-tsan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-tsan-opt index 8e7f83a1..27d6aa3b 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-tsan-opt +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-tsan-opt @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.mozilla-central.latest.firefox.linux64-tsan-opt", - "taskId": "DHuBk21wSCqA0WbjjnTVwg", - "rank": 1576599473, + "taskId": "UriyFxHxRTmXnAyRpug4ig", + "rank": 1595843485, "data": {}, - "expires": "2020-12-16T16:19:57.120Z" + "expires": "2021-07-27T09:55:01.575Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-valgrind-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-valgrind-opt index a8acee04..ece80a83 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-valgrind-opt +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.linux64-valgrind-opt @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.mozilla-central.latest.firefox.linux64-valgrind-opt", - "taskId": "DyNnPmHlSIaDdax0IUl_bg", - "rank": 1573638925, + "taskId": "SaB5uv_dTEWIPo575_w3PA", + "rank": 1595843485, "data": {}, - "expires": "2020-11-12T09:57:06.939Z" + "expires": "2021-07-27T09:55:01.768Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.macosx64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.macosx64-debug index 4a5cc0c7..a4a70659 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.macosx64-debug +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.macosx64-debug @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.mozilla-central.latest.firefox.macosx64-debug", - "taskId": "b37HPU6xS9mN3SXG6wKwlw", - "rank": 1573638925, + "taskId": "N01_OUw1Ts-gqVDABBod-Q", + "rank": 1595843485, "data": {}, - "expires": "2020-11-12T09:57:04.949Z" + "expires": "2021-07-27T09:55:01.474Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.macosx64-fuzzing-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.macosx64-fuzzing-asan-opt index b7c803b2..32fdaa6e 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.macosx64-fuzzing-asan-opt +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.macosx64-fuzzing-asan-opt @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.mozilla-central.latest.firefox.macosx64-fuzzing-asan-opt", - "taskId": "NruUKWIpSn2yredK1yJ6sw", - "rank": 1573638925, + "taskId": "CWZKML8CQTKGfKEydUTJpg", + "rank": 1595843485, "data": {}, - "expires": "2020-11-12T09:57:04.350Z" + "expires": "2021-07-27T09:55:01.073Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.macosx64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.macosx64-opt index 88b5ab5e..6524758c 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.macosx64-opt +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.macosx64-opt @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.mozilla-central.latest.firefox.macosx64-opt", - "taskId": "Pxm7LzhTRRCD1hrpwJD8JA", - "rank": 1573638925, + "taskId": "JKccTU-bT2WTICi54ghK_Q", + "rank": 1595843485, "data": {}, - "expires": "2020-11-12T09:57:03.740Z" + "expires": "2021-07-27T09:55:01.415Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.win64-aarch64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.win64-aarch64-debug index c1005ff7..412c59d8 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.win64-aarch64-debug +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.win64-aarch64-debug @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.mozilla-central.latest.firefox.win64-aarch64-debug", - "taskId": "I5aqK_5aS8aTHqQGYJJtdQ", - "rank": 1573638925, + "taskId": "Nh2PamdHQoyaD52PLzy9iA", + "rank": 1595843485, "data": {}, - "expires": "2020-11-12T09:57:03.765Z" + "expires": "2021-07-27T09:55:01.303Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.win64-aarch64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.win64-aarch64-opt index a99819d5..df35b6b8 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.win64-aarch64-opt +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.win64-aarch64-opt @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.mozilla-central.latest.firefox.win64-aarch64-opt", - "taskId": "K6zaJiAfQIimDlQXrnhQLg", - "rank": 1573638925, + "taskId": "Ib_jWVa3THe2y6CF-WKUvg", + "rank": 1595843485, "data": {}, - "expires": "2020-11-12T09:57:06.593Z" + "expires": "2021-07-27T09:55:01.773Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.win64-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.win64-asan-opt index 52b991e5..6212de3a 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.win64-asan-opt +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.win64-asan-opt @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.mozilla-central.latest.firefox.win64-asan-opt", - "taskId": "Gg-5BIgxRzO6EqQwfp0gDQ", - "rank": 1573638925, + "taskId": "TebNFfhfQ-OJNQWF-uu2zQ", + "rank": 1595843485, "data": {}, - "expires": "2020-11-12T09:57:05.756Z" + "expires": "2021-07-27T09:55:01.561Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.win64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.win64-debug index b6ef511c..7a31f140 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.win64-debug +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.win64-debug @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.mozilla-central.latest.firefox.win64-debug", - "taskId": "RdELVoJ_RIWCfn0c0LJpgw", - "rank": 1573638925, + "taskId": "CVKwRWoATf6hp76VuVgNOQ", + "rank": 1595843485, "data": {}, - "expires": "2020-11-12T09:57:03.714Z" + "expires": "2021-07-27T09:55:01.708Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.win64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.win64-opt index 1931ed14..2366cf98 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.win64-opt +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.firefox.win64-opt @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.mozilla-central.latest.firefox.win64-opt", - "taskId": "WAymaioOQ1qVGZ_r4D51zQ", - "rank": 1573638925, + "taskId": "Nqw1RfbJRcmhxBrE6hKH8g", + "rank": 1595843485, "data": {}, - "expires": "2020-11-12T09:57:05.279Z" + "expires": "2021-07-27T09:55:01.037Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.mobile.android-aarch64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.mobile.android-aarch64-opt index fdd16dca..76685dc1 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.mobile.android-aarch64-opt +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.mobile.android-aarch64-opt @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.mozilla-central.latest.mobile.android-aarch64-opt", - "taskId": "TvQ7G1n0S8qR82PlycxD_A", - "rank": 1573638925, + "taskId": "MRcS87VoS5ChJQmhvCoWBg", + "rank": 1595843485, "data": {}, - "expires": "2020-11-12T09:57:05.307Z" + "expires": "2021-07-27T09:55:01.087Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.mobile.android-api-16-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.mobile.android-api-16-debug index e0eadfd8..58fad99b 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.mobile.android-api-16-debug +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.mobile.android-api-16-debug @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.mozilla-central.latest.mobile.android-api-16-debug", - "taskId": "Isu_XrH0RyqKDl3y9JWukQ", - "rank": 1573638925, + "taskId": "DeySg6H0QuWx736FmX7wFA", + "rank": 1595843485, "data": {}, - "expires": "2020-11-12T09:57:03.769Z" + "expires": "2021-07-27T09:55:01.084Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.mobile.android-api-16-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.mobile.android-api-16-opt index 667953c8..e900339c 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.mobile.android-api-16-opt +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.mobile.android-api-16-opt @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.mozilla-central.latest.mobile.android-api-16-opt", - "taskId": "Sc8S7mSGQkmCjzn0ZJb0_A", - "rank": 1573638925, + "taskId": "M80oPXvqQZmnOyZho0Jveg", + "rank": 1595843485, "data": {}, - "expires": "2020-11-12T09:57:06.779Z" + "expires": "2021-07-27T09:55:01.411Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.mobile.android-x86-fuzzing-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.mobile.android-x86-fuzzing-debug index 865f2ac9..1af8da3e 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.mobile.android-x86-fuzzing-debug +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.mobile.android-x86-fuzzing-debug @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.mozilla-central.latest.mobile.android-x86-fuzzing-debug", - "taskId": "HtyWFQuASxeVe3hGRexbqg", - "rank": 1573638925, + "taskId": "QyNrni4aTMKt74vILhRfzg", + "rank": 1595843485, "data": {}, - "expires": "2020-11-12T09:57:06.855Z" + "expires": "2021-07-27T09:55:01.074Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.mobile.android-x86-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.mobile.android-x86-opt index 58d11465..1ae24b55 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.mobile.android-x86-opt +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.mobile.android-x86-opt @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.mozilla-central.latest.mobile.android-x86-opt", - "taskId": "V6uEUuDqTG236vezwS55nQ", - "rank": 1573638925, + "taskId": "Kgyk6sh9SLyoCPWts2PtWQ", + "rank": 1595843485, "data": {}, - "expires": "2020-11-12T09:57:03.762Z" + "expires": "2021-07-27T09:55:01.541Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.mobile.android-x86_64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.mobile.android-x86_64-opt index 04fee1ef..fdff0bef 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.mobile.android-x86_64-opt +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.latest.mobile.android-x86_64-opt @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.mozilla-central.latest.mobile.android-x86_64-opt", - "taskId": "ItzGnBzDTgy6kZkOEIpHRA", - "rank": 1573638925, + "taskId": "BffyZU2RQ9qqA_K_7FWq5w", + "rank": 1595843485, "data": {}, - "expires": "2020-11-12T09:57:05.212Z" + "expires": "2021-07-27T09:55:01.080Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.07.20191107015224.firefox.linux64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.07.20191107015224.firefox.linux64-opt new file mode 100644 index 00000000..a14caf98 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.07.20191107015224.firefox.linux64-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.pushdate.2019.11.07.20191107015224.firefox.linux64-opt", + "taskId": "BPkH_TmtRYSDE7ZzXuai0A", + "rank": 1573091544, + "data": {}, + "expires": "2020-11-06T02:31:50.813Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.12.20191112094307.firefox.linux64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.12.20191112094307.firefox.linux64-opt deleted file mode 100644 index 4ea427a9..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.12.20191112094307.firefox.linux64-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.pushdate.2019.11.12.20191112094307.firefox.linux64-opt", - "taskId": "M8ZhavH4Tr-cNk86ePROdw", - "rank": 1573551787, - "data": {}, - "expires": "2020-11-11T09:45:04.226Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux-debug deleted file mode 100644 index 65fed8e8..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux-debug", - "taskId": "XsmPa2F0SHm5LP4bU5e8qw", - "rank": 1573620599, - "data": {}, - "expires": "2020-11-12T04:51:48.635Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux-opt deleted file mode 100644 index f45bc817..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux-opt", - "taskId": "Q60nwQ2bRhaRWfcTWOmJKw", - "rank": 1573620599, - "data": {}, - "expires": "2020-11-12T04:51:48.652Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux64-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux64-asan-opt deleted file mode 100644 index a32b1302..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux64-asan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux64-asan-opt", - "taskId": "Q0vOupcdTxeAMbcuR_dULw", - "rank": 1573620599, - "data": {}, - "expires": "2020-11-12T04:51:50.373Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux64-ccov-fuzzing-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux64-ccov-fuzzing-opt deleted file mode 100644 index fd23c24f..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux64-ccov-fuzzing-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux64-ccov-fuzzing-opt", - "taskId": "PBHyPfFgQoO_BrA29NWEtQ", - "rank": 1573620599, - "data": {}, - "expires": "2020-11-12T04:51:48.685Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux64-ccov-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux64-ccov-opt deleted file mode 100644 index c900adfb..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux64-ccov-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux64-ccov-opt", - "taskId": "SMqzMMQ5QpGDpogbEAz7uQ", - "rank": 0, - "data": {}, - "expires": "2020-11-12T04:51:49.736Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux64-debug deleted file mode 100644 index 4a65817a..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux64-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux64-debug", - "taskId": "YL2LGRyhRviFhKS_9-Brkg", - "rank": 1573620599, - "data": {}, - "expires": "2020-11-12T04:51:49.552Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux64-fuzzing-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux64-fuzzing-asan-opt deleted file mode 100644 index ce2ba741..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux64-fuzzing-asan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux64-fuzzing-asan-opt", - "taskId": "IfFwN9_ISSyyGrOls_svcQ", - "rank": 1573620599, - "data": {}, - "expires": "2020-11-12T04:51:49.805Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux64-fuzzing-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux64-fuzzing-debug deleted file mode 100644 index 8cb5b81d..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux64-fuzzing-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux64-fuzzing-debug", - "taskId": "JQIs7fqyQYKsikwVrCanzw", - "rank": 1573620599, - "data": {}, - "expires": "2020-11-12T04:51:50.348Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux64-opt deleted file mode 100644 index bd0b9610..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux64-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux64-opt", - "taskId": "CfvHSHMeStuG85XCg76VRA", - "rank": 1573620599, - "data": {}, - "expires": "2020-11-12T04:51:50.231Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux64-valgrind-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux64-valgrind-opt deleted file mode 100644 index b5424039..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux64-valgrind-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.linux64-valgrind-opt", - "taskId": "S2M0wKrlTZevfhp4JiIF0g", - "rank": 1573620599, - "data": {}, - "expires": "2020-11-12T04:51:50.244Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.macosx64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.macosx64-debug deleted file mode 100644 index 863bdcbf..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.macosx64-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.macosx64-debug", - "taskId": "V0ORIJr5QKqF7pEaJXW8Fg", - "rank": 1573620599, - "data": {}, - "expires": "2020-11-12T04:51:50.376Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.macosx64-fuzzing-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.macosx64-fuzzing-asan-opt deleted file mode 100644 index 4d322e7d..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.macosx64-fuzzing-asan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.macosx64-fuzzing-asan-opt", - "taskId": "XfkwuG8xQ0Ov8io69jyS7A", - "rank": 1573620599, - "data": {}, - "expires": "2020-11-12T04:51:49.602Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.macosx64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.macosx64-opt deleted file mode 100644 index c9c822e3..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.macosx64-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.macosx64-opt", - "taskId": "XyeuXpIcQdWwbr71NUJntA", - "rank": 1573620599, - "data": {}, - "expires": "2020-11-12T04:51:48.686Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.win64-aarch64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.win64-aarch64-debug deleted file mode 100644 index 24b44099..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.win64-aarch64-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.win64-aarch64-debug", - "taskId": "DxKGdJljQhCBGAk6kDeT3w", - "rank": 1573620599, - "data": {}, - "expires": "2020-11-12T04:51:48.622Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.win64-aarch64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.win64-aarch64-opt deleted file mode 100644 index 1fa8e6d0..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.win64-aarch64-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.win64-aarch64-opt", - "taskId": "RczwfItTTjCYbB9OlhccPg", - "rank": 1573620599, - "data": {}, - "expires": "2020-11-12T04:51:49.933Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.win64-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.win64-asan-opt deleted file mode 100644 index 1d09cecb..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.win64-asan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.win64-asan-opt", - "taskId": "WQNdHHSKR-av8RVS4CIcGw", - "rank": 1573620599, - "data": {}, - "expires": "2020-11-12T04:51:48.693Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.win64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.win64-debug deleted file mode 100644 index e9a064c9..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.win64-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.win64-debug", - "taskId": "EbSYCuujRemEgav9VDllyQ", - "rank": 1573620599, - "data": {}, - "expires": "2020-11-12T04:51:50.383Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.win64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.win64-opt deleted file mode 100644 index 470bc476..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.win64-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.firefox.win64-opt", - "taskId": "apS4cd3fTcSIv5R4zNFSbA", - "rank": 1573620599, - "data": {}, - "expires": "2020-11-12T04:51:48.648Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.mobile.android-aarch64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.mobile.android-aarch64-opt deleted file mode 100644 index 006895ab..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.mobile.android-aarch64-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.mobile.android-aarch64-opt", - "taskId": "WgOvkAtqQmKg4HLmRJAEGA", - "rank": 1573620599, - "data": {}, - "expires": "2020-11-12T04:51:50.287Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.mobile.android-api-16-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.mobile.android-api-16-debug deleted file mode 100644 index ee626991..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.mobile.android-api-16-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.mobile.android-api-16-debug", - "taskId": "KGVgyL2ORX6PK_zvEUMFeQ", - "rank": 1573620599, - "data": {}, - "expires": "2020-11-12T04:51:48.639Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.mobile.android-api-16-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.mobile.android-api-16-opt deleted file mode 100644 index bd284efe..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.mobile.android-api-16-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.mobile.android-api-16-opt", - "taskId": "b6NsZq6OQXWaiN9nM13FxA", - "rank": 1573620599, - "data": {}, - "expires": "2020-11-12T04:51:49.507Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.mobile.android-x86-fuzzing-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.mobile.android-x86-fuzzing-debug deleted file mode 100644 index bf92ca36..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.mobile.android-x86-fuzzing-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.mobile.android-x86-fuzzing-debug", - "taskId": "Jq_Sun_rSw6qzGEFDcnbnQ", - "rank": 1573620599, - "data": {}, - "expires": "2020-11-12T04:51:49.509Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.mobile.android-x86-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.mobile.android-x86-opt deleted file mode 100644 index ba923857..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.mobile.android-x86-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.mobile.android-x86-opt", - "taskId": "P8_ZisP9SX2ODpDuXZfUHA", - "rank": 1573620599, - "data": {}, - "expires": "2020-11-12T04:51:48.661Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.mobile.android-x86_64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.mobile.android-x86_64-opt deleted file mode 100644 index b57f04cb..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.mobile.android-x86_64-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.pushdate.2019.11.13.20191113044959.mobile.android-x86_64-opt", - "taskId": "c2WGsOt-QXyFmcaj9VnnbA", - "rank": 1573620599, - "data": {}, - "expires": "2020-11-12T04:51:48.634Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.12.17.20191217041353.firefox.linux64-fuzzing-tsan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.12.17.20191217041353.firefox.linux64-fuzzing-tsan-opt deleted file mode 100644 index 785e9507..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.12.17.20191217041353.firefox.linux64-fuzzing-tsan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.pushdate.2019.12.17.20191217041353.firefox.linux64-fuzzing-tsan-opt", - "taskId": "LhdV7HUVRZ2kywZrAvh7Og", - "rank": 1576556033, - "data": {}, - "expires": "2020-12-16T04:16:24.834Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.12.17.20191217041353.firefox.linux64-tsan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.12.17.20191217041353.firefox.linux64-tsan-opt deleted file mode 100644 index 34a14d55..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2019.12.17.20191217041353.firefox.linux64-tsan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.pushdate.2019.12.17.20191217041353.firefox.linux64-tsan-opt", - "taskId": "cdketYQMQYC8pa8KU3T18Q", - "rank": 1576556033, - "data": {}, - "expires": "2020-12-16T04:16:24.851Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux-debug new file mode 100644 index 00000000..6a4767e5 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux-debug @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux-debug", + "taskId": "aT1N0dq1RV22pTlCW8glJg", + "rank": 1595820600, + "data": {}, + "expires": "2021-07-27T03:36:23.724Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux-opt new file mode 100644 index 00000000..b00586b5 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux-opt", + "taskId": "driCvXiMTZCOdGmC8ufyag", + "rank": 1595820600, + "data": {}, + "expires": "2021-07-27T03:36:23.624Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-asan-opt new file mode 100644 index 00000000..16c4a58d --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-asan-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-asan-opt", + "taskId": "JS86DP29SAee1cmG_cHCfQ", + "rank": 1595820600, + "data": {}, + "expires": "2021-07-27T03:36:23.994Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-ccov-fuzzing-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-ccov-fuzzing-opt new file mode 100644 index 00000000..24fdf838 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-ccov-fuzzing-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-ccov-fuzzing-opt", + "taskId": "Ccy2nP5BQ1mF2ot1mMv24A", + "rank": 1595820600, + "data": {}, + "expires": "2021-07-27T03:36:23.219Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-ccov-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-ccov-opt new file mode 100644 index 00000000..824a0a51 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-ccov-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-ccov-opt", + "taskId": "XQOMLciTTEK08x2cGQyotw", + "rank": 0, + "data": {}, + "expires": "2021-07-27T03:36:23.237Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-debug new file mode 100644 index 00000000..0f86759a --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-debug @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-debug", + "taskId": "RzioZBqsRYGPIYfAmsqe-g", + "rank": 1595820600, + "data": {}, + "expires": "2021-07-27T03:36:23.305Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-fuzzing-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-fuzzing-asan-opt new file mode 100644 index 00000000..fbc47fb4 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-fuzzing-asan-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-fuzzing-asan-opt", + "taskId": "IGVNTQ8qT9aGmKqQe718sQ", + "rank": 1595820600, + "data": {}, + "expires": "2021-07-27T03:36:23.292Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-fuzzing-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-fuzzing-debug new file mode 100644 index 00000000..5b83cb0e --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-fuzzing-debug @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-fuzzing-debug", + "taskId": "ap8Z5BtET26PIhbtZuvNfA", + "rank": 1595820600, + "data": {}, + "expires": "2021-07-27T03:36:23.932Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-fuzzing-tsan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-fuzzing-tsan-opt new file mode 100644 index 00000000..a90d5e2e --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-fuzzing-tsan-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-fuzzing-tsan-opt", + "taskId": "PG82j7WlT-aoE4vlocn66g", + "rank": 1595820600, + "data": {}, + "expires": "2021-07-27T03:36:23.565Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-opt new file mode 100644 index 00000000..570e9ed9 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-opt", + "taskId": "R2NSOq0wT9CEuR9_wnQ0PA", + "rank": 1595820600, + "data": {}, + "expires": "2021-07-27T03:36:23.295Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-tsan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-tsan-opt new file mode 100644 index 00000000..e0605a9e --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-tsan-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-tsan-opt", + "taskId": "NP3U5bKiTEefgd2O6a0MPw", + "rank": 1595820600, + "data": {}, + "expires": "2021-07-27T03:36:24.037Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-valgrind-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-valgrind-opt new file mode 100644 index 00000000..8e0798ba --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-valgrind-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.linux64-valgrind-opt", + "taskId": "KGtCLXc_SWWPwmWRugEdOw", + "rank": 1595820600, + "data": {}, + "expires": "2021-07-27T04:45:12.168Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.macosx64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.macosx64-debug new file mode 100644 index 00000000..f24889c8 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.macosx64-debug @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.macosx64-debug", + "taskId": "efmtwtH-Q-m5vmk1yjEf6w", + "rank": 1595820600, + "data": {}, + "expires": "2021-07-27T03:36:23.287Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.macosx64-fuzzing-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.macosx64-fuzzing-asan-opt new file mode 100644 index 00000000..e1265292 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.macosx64-fuzzing-asan-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.macosx64-fuzzing-asan-opt", + "taskId": "JW5d2KhQR_2Uj-6axFv0-A", + "rank": 1595820600, + "data": {}, + "expires": "2021-07-27T03:36:23.880Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.macosx64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.macosx64-opt new file mode 100644 index 00000000..3d9c9df9 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.macosx64-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.macosx64-opt", + "taskId": "PgetXPV3Tx6gowAdq5CnFg", + "rank": 1595820600, + "data": {}, + "expires": "2021-07-27T03:36:23.667Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.win64-aarch64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.win64-aarch64-debug new file mode 100644 index 00000000..ec91d686 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.win64-aarch64-debug @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.win64-aarch64-debug", + "taskId": "AxnNlU2LQGuD-QELMbp5Aw", + "rank": 1595820600, + "data": {}, + "expires": "2021-07-27T03:36:23.888Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.win64-aarch64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.win64-aarch64-opt new file mode 100644 index 00000000..83578ab5 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.win64-aarch64-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.win64-aarch64-opt", + "taskId": "TLQ0gDvfSHK_ind41MLYyg", + "rank": 1595820600, + "data": {}, + "expires": "2021-07-27T03:36:23.730Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.win64-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.win64-asan-opt new file mode 100644 index 00000000..964a90e3 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.win64-asan-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.win64-asan-opt", + "taskId": "ZlZumNTUS8uWueDjppunKA", + "rank": 1595820600, + "data": {}, + "expires": "2021-07-27T03:36:23.273Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.win64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.win64-debug new file mode 100644 index 00000000..ead89b93 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.win64-debug @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.win64-debug", + "taskId": "K6Wvd0BMR3OLSkjkagXTuQ", + "rank": 1595820600, + "data": {}, + "expires": "2021-07-27T03:36:23.284Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.win64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.win64-opt new file mode 100644 index 00000000..385ba50a --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.win64-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.firefox.win64-opt", + "taskId": "JxODxjaPQRCr8T_x3dLDYA", + "rank": 1595820600, + "data": {}, + "expires": "2021-07-27T03:36:23.265Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.mobile.android-aarch64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.mobile.android-aarch64-opt new file mode 100644 index 00000000..28b3afe5 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.mobile.android-aarch64-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.mobile.android-aarch64-opt", + "taskId": "DAnaZ6M8RBadrL31RedSmA", + "rank": 1595820600, + "data": {}, + "expires": "2021-07-27T03:36:23.650Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.mobile.android-api-16-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.mobile.android-api-16-debug new file mode 100644 index 00000000..66d70abe --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.mobile.android-api-16-debug @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.mobile.android-api-16-debug", + "taskId": "L6Ur7n00SfqZSAHQjGh09A", + "rank": 1595820600, + "data": {}, + "expires": "2021-07-27T03:36:23.679Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.mobile.android-api-16-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.mobile.android-api-16-opt new file mode 100644 index 00000000..78a9ccfc --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.mobile.android-api-16-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.mobile.android-api-16-opt", + "taskId": "L18YVeNlSzCLBg7xe9Acgg", + "rank": 1595820600, + "data": {}, + "expires": "2021-07-27T03:36:23.593Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.mobile.android-x86-fuzzing-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.mobile.android-x86-fuzzing-debug new file mode 100644 index 00000000..4318991a --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.mobile.android-x86-fuzzing-debug @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.mobile.android-x86-fuzzing-debug", + "taskId": "H24YzyhsQJiyCtSuid0Hgw", + "rank": 1595820600, + "data": {}, + "expires": "2021-07-27T03:36:23.948Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.mobile.android-x86-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.mobile.android-x86-opt new file mode 100644 index 00000000..5068b91e --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.mobile.android-x86-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.mobile.android-x86-opt", + "taskId": "e3KJmtAYQVmda93ZtvYGqA", + "rank": 1595820600, + "data": {}, + "expires": "2021-07-27T03:36:24.030Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.mobile.android-x86_64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.mobile.android-x86_64-opt new file mode 100644 index 00000000..0a93e398 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.mobile.android-x86_64-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.pushdate.2020.07.27.20200727033000.mobile.android-x86_64-opt", + "taskId": "Uh-AuQeuSoy6TAGlis1AMg", + "rank": 1595820600, + "data": {}, + "expires": "2021-07-27T03:36:23.314Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux-debug deleted file mode 100644 index 5957501c..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux-debug", - "taskId": "BIvkFPceTl2nkO6ClIjvrw", - "rank": 1573638925, - "data": {}, - "expires": "2020-11-12T09:57:05.243Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux-opt deleted file mode 100644 index df76d96a..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux-opt", - "taskId": "V5umJtBAQVSxB3DvRaiodw", - "rank": 1573638925, - "data": {}, - "expires": "2020-11-12T09:57:04.947Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux64-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux64-asan-opt deleted file mode 100644 index 913105ba..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux64-asan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux64-asan-opt", - "taskId": "Dtt4xKEbSWaLo4cPGGPpfg", - "rank": 1573638925, - "data": {}, - "expires": "2020-11-12T09:57:05.849Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux64-ccov-fuzzing-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux64-ccov-fuzzing-opt deleted file mode 100644 index 9b6529ed..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux64-ccov-fuzzing-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux64-ccov-fuzzing-opt", - "taskId": "BY9xme57QG2Op4lj7-DpuQ", - "rank": 1573638925, - "data": {}, - "expires": "2020-11-12T09:57:03.716Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux64-ccov-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux64-ccov-opt deleted file mode 100644 index a43704a5..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux64-ccov-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux64-ccov-opt", - "taskId": "WySN0vRISLay9uB90URIww", - "rank": 0, - "data": {}, - "expires": "2020-11-12T09:57:04.951Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux64-debug deleted file mode 100644 index 9ca667e9..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux64-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux64-debug", - "taskId": "Hbj3dhiKQG-0pnjl_9NvUQ", - "rank": 1573638925, - "data": {}, - "expires": "2020-11-12T09:57:05.034Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux64-fuzzing-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux64-fuzzing-asan-opt deleted file mode 100644 index 2f4ee512..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux64-fuzzing-asan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux64-fuzzing-asan-opt", - "taskId": "KJsHof7yR7aA9n1-raBZ1w", - "rank": 1573638925, - "data": {}, - "expires": "2020-11-12T09:57:03.725Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux64-fuzzing-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux64-fuzzing-debug deleted file mode 100644 index 96566741..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux64-fuzzing-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux64-fuzzing-debug", - "taskId": "ezKbjCV5Rd-pr5WgeL44sQ", - "rank": 1573638925, - "data": {}, - "expires": "2020-11-12T09:57:05.408Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux64-opt deleted file mode 100644 index 09b7916a..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux64-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux64-opt", - "taskId": "dJG9Q-QQTnWD9JUhxCa73w", - "rank": 1573638925, - "data": {}, - "expires": "2020-11-12T09:57:05.393Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux64-valgrind-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux64-valgrind-opt deleted file mode 100644 index ef9acd26..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux64-valgrind-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.linux64-valgrind-opt", - "taskId": "DyNnPmHlSIaDdax0IUl_bg", - "rank": 1573638925, - "data": {}, - "expires": "2020-11-12T09:57:06.939Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.macosx64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.macosx64-debug deleted file mode 100644 index 381883f2..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.macosx64-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.macosx64-debug", - "taskId": "b37HPU6xS9mN3SXG6wKwlw", - "rank": 1573638925, - "data": {}, - "expires": "2020-11-12T09:57:04.949Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.macosx64-fuzzing-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.macosx64-fuzzing-asan-opt deleted file mode 100644 index 17b312eb..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.macosx64-fuzzing-asan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.macosx64-fuzzing-asan-opt", - "taskId": "NruUKWIpSn2yredK1yJ6sw", - "rank": 1573638925, - "data": {}, - "expires": "2020-11-12T09:57:04.350Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.macosx64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.macosx64-opt deleted file mode 100644 index ef820f50..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.macosx64-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.macosx64-opt", - "taskId": "Pxm7LzhTRRCD1hrpwJD8JA", - "rank": 1573638925, - "data": {}, - "expires": "2020-11-12T09:57:03.740Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.win64-aarch64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.win64-aarch64-debug deleted file mode 100644 index 73742ce2..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.win64-aarch64-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.win64-aarch64-debug", - "taskId": "I5aqK_5aS8aTHqQGYJJtdQ", - "rank": 1573638925, - "data": {}, - "expires": "2020-11-12T09:57:03.765Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.win64-aarch64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.win64-aarch64-opt deleted file mode 100644 index f5354b34..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.win64-aarch64-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.win64-aarch64-opt", - "taskId": "K6zaJiAfQIimDlQXrnhQLg", - "rank": 1573638925, - "data": {}, - "expires": "2020-11-12T09:57:06.593Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.win64-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.win64-asan-opt deleted file mode 100644 index 04fc8c3f..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.win64-asan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.win64-asan-opt", - "taskId": "Gg-5BIgxRzO6EqQwfp0gDQ", - "rank": 1573638925, - "data": {}, - "expires": "2020-11-12T09:57:05.756Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.win64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.win64-debug deleted file mode 100644 index 57dc7ac4..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.win64-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.win64-debug", - "taskId": "RdELVoJ_RIWCfn0c0LJpgw", - "rank": 1573638925, - "data": {}, - "expires": "2020-11-12T09:57:03.714Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.win64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.win64-opt deleted file mode 100644 index 4453c656..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.win64-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.firefox.win64-opt", - "taskId": "WAymaioOQ1qVGZ_r4D51zQ", - "rank": 1573638925, - "data": {}, - "expires": "2020-11-12T09:57:05.279Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.mobile.android-aarch64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.mobile.android-aarch64-opt deleted file mode 100644 index 7a5221cc..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.mobile.android-aarch64-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.mobile.android-aarch64-opt", - "taskId": "TvQ7G1n0S8qR82PlycxD_A", - "rank": 1573638925, - "data": {}, - "expires": "2020-11-12T09:57:05.307Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.mobile.android-api-16-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.mobile.android-api-16-debug deleted file mode 100644 index ce14e50e..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.mobile.android-api-16-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.mobile.android-api-16-debug", - "taskId": "Isu_XrH0RyqKDl3y9JWukQ", - "rank": 1573638925, - "data": {}, - "expires": "2020-11-12T09:57:03.769Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.mobile.android-api-16-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.mobile.android-api-16-opt deleted file mode 100644 index 185da473..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.mobile.android-api-16-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.mobile.android-api-16-opt", - "taskId": "Sc8S7mSGQkmCjzn0ZJb0_A", - "rank": 1573638925, - "data": {}, - "expires": "2020-11-12T09:57:06.779Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.mobile.android-x86-fuzzing-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.mobile.android-x86-fuzzing-debug deleted file mode 100644 index 8cee83c4..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.mobile.android-x86-fuzzing-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.mobile.android-x86-fuzzing-debug", - "taskId": "HtyWFQuASxeVe3hGRexbqg", - "rank": 1573638925, - "data": {}, - "expires": "2020-11-12T09:57:06.855Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.mobile.android-x86-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.mobile.android-x86-opt deleted file mode 100644 index 604eb90f..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.mobile.android-x86-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.mobile.android-x86-opt", - "taskId": "V6uEUuDqTG236vezwS55nQ", - "rank": 1573638925, - "data": {}, - "expires": "2020-11-12T09:57:03.762Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.mobile.android-x86_64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.mobile.android-x86_64-opt deleted file mode 100644 index 2cf49b11..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.mobile.android-x86_64-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.revision.2f19e7b646e0a52fa855b75c868f0a3f3a990ad3.mobile.android-x86_64-opt", - "taskId": "ItzGnBzDTgy6kZkOEIpHRA", - "rank": 1573638925, - "data": {}, - "expires": "2020-11-12T09:57:05.212Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux-debug new file mode 100644 index 00000000..3a4d66cb --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux-debug @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux-debug", + "taskId": "aagfJV-WQXWO03_119KAXw", + "rank": 1595843485, + "data": {}, + "expires": "2021-07-27T09:55:01.023Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux-opt new file mode 100644 index 00000000..018db788 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux-opt", + "taskId": "YqmZbJ9ZS8WiFDRiqLLngA", + "rank": 1595843485, + "data": {}, + "expires": "2021-07-27T09:55:01.027Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-asan-opt new file mode 100644 index 00000000..b51279c0 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-asan-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-asan-opt", + "taskId": "doI-yWRFR9eMidgEv73LKA", + "rank": 1595843485, + "data": {}, + "expires": "2021-07-27T09:55:01.553Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-ccov-fuzzing-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-ccov-fuzzing-opt new file mode 100644 index 00000000..c1475144 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-ccov-fuzzing-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-ccov-fuzzing-opt", + "taskId": "WpRCvHWqTT6GFEhNIHQuKw", + "rank": 1595843485, + "data": {}, + "expires": "2021-07-27T09:55:01.758Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-ccov-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-ccov-opt new file mode 100644 index 00000000..75031662 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-ccov-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-ccov-opt", + "taskId": "e86rdK-6Q8aS4_OPJ1gf3Q", + "rank": 0, + "data": {}, + "expires": "2021-07-27T09:55:01.711Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-debug new file mode 100644 index 00000000..9549ea13 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-debug @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-debug", + "taskId": "UmQjjcmYRV6xlvDcBmqmxQ", + "rank": 1595843485, + "data": {}, + "expires": "2021-07-27T09:55:01.508Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-fuzzing-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-fuzzing-asan-opt new file mode 100644 index 00000000..02aaf6a3 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-fuzzing-asan-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-fuzzing-asan-opt", + "taskId": "DWRN2AIISlylhB6e35I6jQ", + "rank": 1595843485, + "data": {}, + "expires": "2021-07-27T09:55:01.060Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-fuzzing-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-fuzzing-debug new file mode 100644 index 00000000..d0b81023 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-fuzzing-debug @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-fuzzing-debug", + "taskId": "FwzXYhK4TpupXO6emQzZbA", + "rank": 1595843485, + "data": {}, + "expires": "2021-07-27T09:55:01.455Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-fuzzing-tsan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-fuzzing-tsan-opt new file mode 100644 index 00000000..5a20309e --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-fuzzing-tsan-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-fuzzing-tsan-opt", + "taskId": "ZLg-J4GcQAqBSk4wscC4Zg", + "rank": 1595843485, + "data": {}, + "expires": "2021-07-27T09:55:01.673Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-opt new file mode 100644 index 00000000..788b5bea --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-opt", + "taskId": "MJVRUKY9QjeNwlfgb15bZQ", + "rank": 1595843485, + "data": {}, + "expires": "2021-07-27T09:55:01.491Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-tsan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-tsan-opt new file mode 100644 index 00000000..9d817bbb --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-tsan-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-tsan-opt", + "taskId": "UriyFxHxRTmXnAyRpug4ig", + "rank": 1595843485, + "data": {}, + "expires": "2021-07-27T09:55:01.575Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-valgrind-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-valgrind-opt new file mode 100644 index 00000000..44c35777 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-valgrind-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.linux64-valgrind-opt", + "taskId": "SaB5uv_dTEWIPo575_w3PA", + "rank": 1595843485, + "data": {}, + "expires": "2021-07-27T09:55:01.768Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.macosx64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.macosx64-debug new file mode 100644 index 00000000..74e02e13 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.macosx64-debug @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.macosx64-debug", + "taskId": "N01_OUw1Ts-gqVDABBod-Q", + "rank": 1595843485, + "data": {}, + "expires": "2021-07-27T09:55:01.474Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.macosx64-fuzzing-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.macosx64-fuzzing-asan-opt new file mode 100644 index 00000000..6cbc8749 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.macosx64-fuzzing-asan-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.macosx64-fuzzing-asan-opt", + "taskId": "CWZKML8CQTKGfKEydUTJpg", + "rank": 1595843485, + "data": {}, + "expires": "2021-07-27T09:55:01.073Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.macosx64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.macosx64-opt new file mode 100644 index 00000000..88dba246 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.macosx64-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.macosx64-opt", + "taskId": "JKccTU-bT2WTICi54ghK_Q", + "rank": 1595843485, + "data": {}, + "expires": "2021-07-27T09:55:01.415Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.win64-aarch64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.win64-aarch64-debug new file mode 100644 index 00000000..e74c66c0 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.win64-aarch64-debug @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.win64-aarch64-debug", + "taskId": "Nh2PamdHQoyaD52PLzy9iA", + "rank": 1595843485, + "data": {}, + "expires": "2021-07-27T09:55:01.303Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.win64-aarch64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.win64-aarch64-opt new file mode 100644 index 00000000..7ff9005c --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.win64-aarch64-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.win64-aarch64-opt", + "taskId": "Ib_jWVa3THe2y6CF-WKUvg", + "rank": 1595843485, + "data": {}, + "expires": "2021-07-27T09:55:01.773Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.win64-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.win64-asan-opt new file mode 100644 index 00000000..393519dd --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.win64-asan-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.win64-asan-opt", + "taskId": "TebNFfhfQ-OJNQWF-uu2zQ", + "rank": 1595843485, + "data": {}, + "expires": "2021-07-27T09:55:01.561Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.win64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.win64-debug new file mode 100644 index 00000000..77647789 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.win64-debug @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.win64-debug", + "taskId": "CVKwRWoATf6hp76VuVgNOQ", + "rank": 1595843485, + "data": {}, + "expires": "2021-07-27T09:55:01.708Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.win64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.win64-opt new file mode 100644 index 00000000..32656fe8 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.win64-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.firefox.win64-opt", + "taskId": "Nqw1RfbJRcmhxBrE6hKH8g", + "rank": 1595843485, + "data": {}, + "expires": "2021-07-27T09:55:01.037Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.mobile.android-aarch64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.mobile.android-aarch64-opt new file mode 100644 index 00000000..a29a724d --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.mobile.android-aarch64-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.mobile.android-aarch64-opt", + "taskId": "MRcS87VoS5ChJQmhvCoWBg", + "rank": 1595843485, + "data": {}, + "expires": "2021-07-27T09:55:01.087Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.mobile.android-api-16-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.mobile.android-api-16-debug new file mode 100644 index 00000000..e96918f4 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.mobile.android-api-16-debug @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.mobile.android-api-16-debug", + "taskId": "DeySg6H0QuWx736FmX7wFA", + "rank": 1595843485, + "data": {}, + "expires": "2021-07-27T09:55:01.084Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.mobile.android-api-16-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.mobile.android-api-16-opt new file mode 100644 index 00000000..220717db --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.mobile.android-api-16-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.mobile.android-api-16-opt", + "taskId": "M80oPXvqQZmnOyZho0Jveg", + "rank": 1595843485, + "data": {}, + "expires": "2021-07-27T09:55:01.411Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.mobile.android-x86-fuzzing-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.mobile.android-x86-fuzzing-debug new file mode 100644 index 00000000..962c92b9 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.mobile.android-x86-fuzzing-debug @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.mobile.android-x86-fuzzing-debug", + "taskId": "QyNrni4aTMKt74vILhRfzg", + "rank": 1595843485, + "data": {}, + "expires": "2021-07-27T09:55:01.074Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.mobile.android-x86-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.mobile.android-x86-opt new file mode 100644 index 00000000..0eec30ba --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.mobile.android-x86-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.mobile.android-x86-opt", + "taskId": "Kgyk6sh9SLyoCPWts2PtWQ", + "rank": 1595843485, + "data": {}, + "expires": "2021-07-27T09:55:01.541Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.mobile.android-x86_64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.mobile.android-x86_64-opt new file mode 100644 index 00000000..c2c1f67b --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.mobile.android-x86_64-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.mozilla-central.revision.798bdad605b985a71cd204a56bb816dea503d432.mobile.android-x86_64-opt", + "taskId": "BffyZU2RQ9qqA_K_7FWq5w", + "rank": 1595843485, + "data": {}, + "expires": "2021-07-27T09:55:01.080Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.930ad6def3c7961c82b2af20b66be3351603684f.firefox.linux64-fuzzing-tsan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.930ad6def3c7961c82b2af20b66be3351603684f.firefox.linux64-fuzzing-tsan-opt deleted file mode 100644 index 23c15677..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.930ad6def3c7961c82b2af20b66be3351603684f.firefox.linux64-fuzzing-tsan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.revision.930ad6def3c7961c82b2af20b66be3351603684f.firefox.linux64-fuzzing-tsan-opt", - "taskId": "ZlOOTdjoSpaqmnU6f0lE3A", - "rank": 1576599473, - "data": {}, - "expires": "2020-12-16T16:19:58.413Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.930ad6def3c7961c82b2af20b66be3351603684f.firefox.linux64-tsan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.930ad6def3c7961c82b2af20b66be3351603684f.firefox.linux64-tsan-opt deleted file mode 100644 index 1a32bb6e..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.930ad6def3c7961c82b2af20b66be3351603684f.firefox.linux64-tsan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.revision.930ad6def3c7961c82b2af20b66be3351603684f.firefox.linux64-tsan-opt", - "taskId": "DHuBk21wSCqA0WbjjnTVwg", - "rank": 1576599473, - "data": {}, - "expires": "2020-12-16T16:19:57.120Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.d1001fea6e4c66b98bb4983df49c6e47d2db5ceb.firefox.macosx64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.d1001fea6e4c66b98bb4983df49c6e47d2db5ceb.firefox.macosx64-opt deleted file mode 100644 index 83f0276d..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.d1001fea6e4c66b98bb4983df49c6e47d2db5ceb.firefox.macosx64-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.revision.d1001fea6e4c66b98bb4983df49c6e47d2db5ceb.firefox.macosx64-opt", - "taskId": "F8mmDlcITXa8pd0PgjYWIQ", - "rank": 1575396433, - "data": {}, - "expires": "2020-12-02T18:08:55.853Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.d1001fea6e4c66b98bb4983df49c6e47d2db5ceb.firefox.win64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.d1001fea6e4c66b98bb4983df49c6e47d2db5ceb.firefox.win64-opt deleted file mode 100644 index dae6909d..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-central.revision.d1001fea6e4c66b98bb4983df49c6e47d2db5ceb.firefox.win64-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-central.revision.d1001fea6e4c66b98bb4983df49c6e47d2db5ceb.firefox.win64-opt", - "taskId": "UH-FM-VNTN65CijsVXymGQ", - "rank": 1575396433, - "data": {}, - "expires": "2020-12-02T18:08:57.084Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.linux-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.linux-debug deleted file mode 100644 index 3218e214..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.linux-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.latest.firefox.linux-debug", - "taskId": "WMHJbRaXSi6WXnuVk4fTRA", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:45.007Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.linux-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.linux-opt deleted file mode 100644 index ed301d4b..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.linux-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.latest.firefox.linux-opt", - "taskId": "ZIUtxeA1TYmvBJLmA0YRZw", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:44.980Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.linux64-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.linux64-asan-opt deleted file mode 100644 index 046cdc6f..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.linux64-asan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.latest.firefox.linux64-asan-opt", - "taskId": "IXnHnehhSjGDB8s_e_-N_w", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:44.977Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.linux64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.linux64-debug deleted file mode 100644 index a65aea10..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.linux64-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.latest.firefox.linux64-debug", - "taskId": "J41SVE-sRF21MAiXRpXOgg", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:44.964Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.linux64-fuzzing-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.linux64-fuzzing-asan-opt deleted file mode 100644 index 1ef74e2a..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.linux64-fuzzing-asan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.latest.firefox.linux64-fuzzing-asan-opt", - "taskId": "WSKwsLgmQXCXWCd1UdWz7Q", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:44.986Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.linux64-fuzzing-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.linux64-fuzzing-debug deleted file mode 100644 index 8946f918..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.linux64-fuzzing-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.latest.firefox.linux64-fuzzing-debug", - "taskId": "Kn632XVVRz2tVefNIlC7Ow", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:45.030Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.linux64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.linux64-opt deleted file mode 100644 index c8b4327c..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.linux64-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.latest.firefox.linux64-opt", - "taskId": "Wp5v7gouSqSGc0OF3fDbJA", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:44.974Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.linux64-valgrind-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.linux64-valgrind-opt deleted file mode 100644 index f389bd6f..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.linux64-valgrind-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.latest.firefox.linux64-valgrind-opt", - "taskId": "E1p0LzmBSQqukKd0yhrAjw", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:45.029Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.macosx64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.macosx64-debug deleted file mode 100644 index 8c97d044..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.macosx64-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.latest.firefox.macosx64-debug", - "taskId": "RnuyytsuQmuySSFQt0y6lw", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:44.962Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.macosx64-fuzzing-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.macosx64-fuzzing-asan-opt deleted file mode 100644 index cbddc12e..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.macosx64-fuzzing-asan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.latest.firefox.macosx64-fuzzing-asan-opt", - "taskId": "ViKm6PJ5QYyVJy0XZpwK0Q", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:44.993Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.macosx64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.macosx64-opt deleted file mode 100644 index de1e9fed..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.macosx64-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.latest.firefox.macosx64-opt", - "taskId": "eYMhAWGmSpKLp4UmN7eVyg", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:44.970Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.win64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.win64-debug deleted file mode 100644 index b8a588f1..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.win64-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.latest.firefox.win64-debug", - "taskId": "Fl6LbluWQnybFSPpgLMKiw", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:45.012Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.win64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.win64-opt deleted file mode 100644 index 11146eb3..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr60.latest.firefox.win64-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.latest.firefox.win64-opt", - "taskId": "NTKDp9loS6adtUEUDoBBxw", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:45.020Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.latest.firefox.linux-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.latest.firefox.linux-debug deleted file mode 100644 index d82890c7..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.latest.firefox.linux-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr68.latest.firefox.linux-debug", - "taskId": "JoB5nQ51SbKHAAAnXSqC9A", - "rank": 1573597760, - "data": {}, - "expires": "2020-11-11T22:30:47.309Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.latest.firefox.linux64-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.latest.firefox.linux64-asan-opt deleted file mode 100644 index 1e90ce16..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.latest.firefox.linux64-asan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr68.latest.firefox.linux64-asan-opt", - "taskId": "TcJgBB75T8CbkhWWD-Uybw", - "rank": 1573597760, - "data": {}, - "expires": "2020-11-11T22:30:46.506Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.latest.firefox.linux64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.latest.firefox.linux64-debug deleted file mode 100644 index 77ff6619..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.latest.firefox.linux64-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr68.latest.firefox.linux64-debug", - "taskId": "YyMBvE7VS-GW50WQg_RCBg", - "rank": 1573597760, - "data": {}, - "expires": "2020-11-11T22:30:46.503Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.latest.firefox.linux64-fuzzing-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.latest.firefox.linux64-fuzzing-asan-opt deleted file mode 100644 index 1663d6a8..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.latest.firefox.linux64-fuzzing-asan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr68.latest.firefox.linux64-fuzzing-asan-opt", - "taskId": "dKCEw0LCSI2wwiQPpg2bGA", - "rank": 1573597760, - "data": {}, - "expires": "2020-11-11T22:30:46.488Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.latest.firefox.linux64-fuzzing-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.latest.firefox.linux64-fuzzing-debug deleted file mode 100644 index a70b887c..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.latest.firefox.linux64-fuzzing-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr68.latest.firefox.linux64-fuzzing-debug", - "taskId": "KLnhSxFdQeqwWMo002yN3g", - "rank": 1573597760, - "data": {}, - "expires": "2020-11-11T22:30:46.501Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.latest.firefox.linux64-valgrind-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.latest.firefox.linux64-valgrind-opt deleted file mode 100644 index 5303fa19..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.latest.firefox.linux64-valgrind-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr68.latest.firefox.linux64-valgrind-opt", - "taskId": "eTgkfssnQs2ULrteKOIqpA", - "rank": 1573597760, - "data": {}, - "expires": "2020-11-11T22:30:47.217Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.latest.firefox.macosx64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.latest.firefox.macosx64-debug deleted file mode 100644 index 4f7deb5c..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.latest.firefox.macosx64-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr68.latest.firefox.macosx64-debug", - "taskId": "ItlvG04iRVW2ARNltmKcPg", - "rank": 1573597760, - "data": {}, - "expires": "2020-11-11T22:30:46.472Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.latest.firefox.macosx64-fuzzing-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.latest.firefox.macosx64-fuzzing-asan-opt deleted file mode 100644 index 07dbea44..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.latest.firefox.macosx64-fuzzing-asan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr68.latest.firefox.macosx64-fuzzing-asan-opt", - "taskId": "AddIufIfTemwVdJbbL3FQA", - "rank": 1573597760, - "data": {}, - "expires": "2020-11-11T22:30:46.466Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.latest.firefox.win64-aarch64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.latest.firefox.win64-aarch64-debug deleted file mode 100644 index 61d2ab5c..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.latest.firefox.win64-aarch64-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr68.latest.firefox.win64-aarch64-debug", - "taskId": "Ni2wPbu1TRSX0tTQ4WgLgA", - "rank": 1573597760, - "data": {}, - "expires": "2020-11-11T22:30:46.516Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.latest.firefox.win64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.latest.firefox.win64-debug deleted file mode 100644 index 0d526681..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.latest.firefox.win64-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr68.latest.firefox.win64-debug", - "taskId": "DxTCL8g7TUmGlrChQ4fFhQ", - "rank": 1573597760, - "data": {}, - "expires": "2020-11-11T22:30:47.223Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.linux-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.linux-debug deleted file mode 100644 index deff9b3a..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.linux-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.linux-debug", - "taskId": "FykUIja8R_eqYlOI7KOO1A", - "rank": 1573528084, - "data": {}, - "expires": "2020-11-11T03:09:35.438Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.linux64-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.linux64-asan-opt deleted file mode 100644 index 1fd2725c..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.linux64-asan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.linux64-asan-opt", - "taskId": "X-LWu-ylQnyFIacsvfrDdA", - "rank": 1573528084, - "data": {}, - "expires": "2020-11-11T03:09:35.425Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.linux64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.linux64-debug deleted file mode 100644 index 648e401a..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.linux64-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.linux64-debug", - "taskId": "WtGjUSJTTlaRiJHzyciP8w", - "rank": 1573528084, - "data": {}, - "expires": "2020-11-11T03:09:35.454Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.linux64-fuzzing-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.linux64-fuzzing-asan-opt deleted file mode 100644 index 608e660f..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.linux64-fuzzing-asan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.linux64-fuzzing-asan-opt", - "taskId": "IhxOgusAS9qWBMO_3s6epQ", - "rank": 1573528084, - "data": {}, - "expires": "2020-11-11T03:09:35.385Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.linux64-fuzzing-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.linux64-fuzzing-debug deleted file mode 100644 index 458b2e76..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.linux64-fuzzing-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.linux64-fuzzing-debug", - "taskId": "ILoMNgK7Q1-LpNWZrnl6WA", - "rank": 1573528084, - "data": {}, - "expires": "2020-11-11T03:09:35.447Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.linux64-valgrind-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.linux64-valgrind-opt deleted file mode 100644 index 05bb3a7f..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.linux64-valgrind-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.linux64-valgrind-opt", - "taskId": "SXttWpX_TViyQHFkMZ9wdQ", - "rank": 1573528084, - "data": {}, - "expires": "2020-11-11T03:09:35.938Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.macosx64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.macosx64-debug deleted file mode 100644 index 87574c6e..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.macosx64-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.macosx64-debug", - "taskId": "Q17ON-95TxWO4UW586dv_w", - "rank": 1573528084, - "data": {}, - "expires": "2020-11-11T03:09:35.418Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.macosx64-fuzzing-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.macosx64-fuzzing-asan-opt deleted file mode 100644 index b408eaef..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.macosx64-fuzzing-asan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.macosx64-fuzzing-asan-opt", - "taskId": "Wf466fw6RUO4xNpRsUhprQ", - "rank": 1573528084, - "data": {}, - "expires": "2020-11-11T03:09:35.415Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.win64-aarch64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.win64-aarch64-debug deleted file mode 100644 index 79004d16..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.win64-aarch64-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.win64-aarch64-debug", - "taskId": "Hb8SgS8zQ7SuviN-QoI0LQ", - "rank": 1573528084, - "data": {}, - "expires": "2020-11-11T03:09:35.793Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.win64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.win64-debug deleted file mode 100644 index 76c57511..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.win64-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr68.pushdate.2019.11.12.20191112030804.firefox.win64-debug", - "taskId": "XX1wCY_gRNqjaHFkpoVxLg", - "rank": 1573528084, - "data": {}, - "expires": "2020-11-11T03:09:35.393Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.linux-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.linux-debug deleted file mode 100644 index 6936c421..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.linux-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.linux-debug", - "taskId": "JoB5nQ51SbKHAAAnXSqC9A", - "rank": 1573597760, - "data": {}, - "expires": "2020-11-11T22:30:47.309Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.linux64-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.linux64-asan-opt deleted file mode 100644 index be20050a..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.linux64-asan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.linux64-asan-opt", - "taskId": "TcJgBB75T8CbkhWWD-Uybw", - "rank": 1573597760, - "data": {}, - "expires": "2020-11-11T22:30:46.506Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.linux64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.linux64-debug deleted file mode 100644 index fbd3af25..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.linux64-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.linux64-debug", - "taskId": "YyMBvE7VS-GW50WQg_RCBg", - "rank": 1573597760, - "data": {}, - "expires": "2020-11-11T22:30:46.503Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.linux64-fuzzing-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.linux64-fuzzing-asan-opt deleted file mode 100644 index ef8b42bd..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.linux64-fuzzing-asan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.linux64-fuzzing-asan-opt", - "taskId": "dKCEw0LCSI2wwiQPpg2bGA", - "rank": 1573597760, - "data": {}, - "expires": "2020-11-11T22:30:46.488Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.linux64-fuzzing-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.linux64-fuzzing-debug deleted file mode 100644 index a4c6ff39..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.linux64-fuzzing-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.linux64-fuzzing-debug", - "taskId": "KLnhSxFdQeqwWMo002yN3g", - "rank": 1573597760, - "data": {}, - "expires": "2020-11-11T22:30:46.501Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.linux64-valgrind-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.linux64-valgrind-opt deleted file mode 100644 index 59fa2f1d..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.linux64-valgrind-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.linux64-valgrind-opt", - "taskId": "eTgkfssnQs2ULrteKOIqpA", - "rank": 1573597760, - "data": {}, - "expires": "2020-11-11T22:30:47.217Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.macosx64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.macosx64-debug deleted file mode 100644 index fa48d8d5..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.macosx64-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.macosx64-debug", - "taskId": "ItlvG04iRVW2ARNltmKcPg", - "rank": 1573597760, - "data": {}, - "expires": "2020-11-11T22:30:46.472Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.macosx64-fuzzing-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.macosx64-fuzzing-asan-opt deleted file mode 100644 index 0231cad9..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.macosx64-fuzzing-asan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.macosx64-fuzzing-asan-opt", - "taskId": "AddIufIfTemwVdJbbL3FQA", - "rank": 1573597760, - "data": {}, - "expires": "2020-11-11T22:30:46.466Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.win64-aarch64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.win64-aarch64-debug deleted file mode 100644 index 6684fbc5..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.win64-aarch64-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.win64-aarch64-debug", - "taskId": "Ni2wPbu1TRSX0tTQ4WgLgA", - "rank": 1573597760, - "data": {}, - "expires": "2020-11-11T22:30:46.516Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.win64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.win64-debug deleted file mode 100644 index bcf6bdb2..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.win64-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr68.revision.939a3aec03d304a0a3e3b003e26965c6e95ec211.firefox.win64-debug", - "taskId": "DxTCL8g7TUmGlrChQ4fFhQ", - "rank": 1573597760, - "data": {}, - "expires": "2020-11-11T22:30:47.223Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux-debug index 44397985..bd07a44f 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux-debug +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux-debug @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.try.latest.firefox.linux-debug", - "taskId": "CQHN-TC9SfOx4lsuks4AmA", - "rank": 1573653577, + "taskId": "c67_iKakT1agkfRvdzlH3w", + "rank": 1595844522, "data": {}, - "expires": "2019-12-11T14:02:38.670Z" + "expires": "2020-08-24T10:14:03.147Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux-opt index 35838c60..f6da5bf4 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux-opt +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux-opt @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.try.latest.firefox.linux-opt", - "taskId": "bAwy3FOSRU6FCJzuNlxVrg", - "rank": 1573658770, + "taskId": "ZOtp1_ZJT3iBI0RlqUe6Sw", + "rank": 1595839928, "data": {}, - "expires": "2019-12-11T15:28:25.840Z" + "expires": "2020-08-24T08:59:09.021Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux64-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux64-asan-opt index a1a94bcd..28007cfc 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux64-asan-opt +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux64-asan-opt @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.try.latest.firefox.linux64-asan-opt", - "taskId": "T_IIHhb-Q2KVGfS8Q7yd-A", - "rank": 1573657734, + "taskId": "Ku53XFq6Q1uRpOtYtpuYog", + "rank": 1595857398, "data": {}, - "expires": "2019-12-11T15:11:36.368Z" + "expires": "2020-08-24T13:50:07.154Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux64-debug index 65c3cadd..44f9a709 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux64-debug +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux64-debug @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.try.latest.firefox.linux64-debug", - "taskId": "FKLwujNvTGynoiAm9Q7xKQ", - "rank": 1573661727, + "taskId": "M7t6MjptQwmQ9RNCjzeV9w", + "rank": 1595857713, "data": {}, - "expires": "2019-12-11T16:18:01.733Z" + "expires": "2020-08-24T13:54:31.669Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux64-fuzzing-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux64-fuzzing-asan-opt index 38c93c1d..e6b9e3de 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux64-fuzzing-asan-opt +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux64-fuzzing-asan-opt @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.try.latest.firefox.linux64-fuzzing-asan-opt", - "taskId": "atlDqsiJS9iEF2agw_qjCQ", - "rank": 1573655056, + "taskId": "IlMYW-5xQeiZXIMUZYTrEg", + "rank": 1595851277, "data": {}, - "expires": "2019-12-11T14:26:39.371Z" + "expires": "2020-08-24T12:05:51.976Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux64-fuzzing-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux64-fuzzing-debug index a82793f0..9709a160 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux64-fuzzing-debug +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux64-fuzzing-debug @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.try.latest.firefox.linux64-fuzzing-debug", - "taskId": "b_mIGMiOS6y5KsyUgJP4QQ", - "rank": 1573646084, + "taskId": "Z5jAUsk5TMKMIeB0HsW8-A", + "rank": 1595857597, "data": {}, - "expires": "2019-12-11T11:59:57.684Z" + "expires": "2020-08-24T13:52:34.901Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux64-fuzzing-tsan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux64-fuzzing-tsan-opt index 51eab62e..544bb827 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux64-fuzzing-tsan-opt +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux64-fuzzing-tsan-opt @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.try.latest.firefox.linux64-fuzzing-tsan-opt", - "taskId": "MMHs5aKxS4GSXaJVtvfK6A", - "rank": 1576610175, + "taskId": "EyvCI9VSQCabkLWQUnrj1w", + "rank": 1595851277, "data": {}, - "expires": "2020-01-14T19:18:49.371Z" + "expires": "2020-08-24T12:05:51.964Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux64-opt index c7a6af34..a54d77df 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux64-opt +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux64-opt @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.try.latest.firefox.linux64-opt", - "taskId": "f49zCWoJQGetJ7BX-dCTJw", - "rank": 1573661727, + "taskId": "YLL_snAESdOl6DtLR6SmdQ", + "rank": 1595858172, "data": {}, - "expires": "2019-12-11T16:18:01.723Z" + "expires": "2020-08-24T14:01:21.519Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux64-tsan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux64-tsan-opt index ee766340..44841d6b 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux64-tsan-opt +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux64-tsan-opt @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.try.latest.firefox.linux64-tsan-opt", - "taskId": "SOKM7jKMQsmYR8RY3rjSbA", - "rank": 1576610175, + "taskId": "N_K3Ym8MQL-bnraItA7_cQ", + "rank": 1595851277, "data": {}, - "expires": "2020-01-14T19:18:49.376Z" + "expires": "2020-08-24T12:05:51.978Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux64-valgrind-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux64-valgrind-opt index abc89b1e..23b7c606 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux64-valgrind-opt +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.linux64-valgrind-opt @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.try.latest.firefox.linux64-valgrind-opt", - "taskId": "Wtj1MZvfRReyOR7uG_PMxQ", - "rank": 1573655056, + "taskId": "S3BnJj5jSq6wMLXw0eKhCQ", + "rank": 1595025301, "data": {}, - "expires": "2019-12-11T14:26:39.322Z" + "expires": "2020-08-14T22:41:36.168Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.macosx64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.macosx64-debug index 5f8c137e..2a805603 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.macosx64-debug +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.macosx64-debug @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.try.latest.firefox.macosx64-debug", - "taskId": "P1Rv4BljTAuUkmdl8y9bhw", - "rank": 1573661480, + "taskId": "AReM_qPXSK6ZkfwSf-YTNg", + "rank": 1595857713, "data": {}, - "expires": "2019-12-11T16:13:29.836Z" + "expires": "2020-08-24T13:54:31.650Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.macosx64-fuzzing-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.macosx64-fuzzing-asan-opt index b5b47859..a3539ca0 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.macosx64-fuzzing-asan-opt +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.macosx64-fuzzing-asan-opt @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.try.latest.firefox.macosx64-fuzzing-asan-opt", - "taskId": "Fwy0SF8zRMqipgIp7of-zA", - "rank": 1573655056, + "taskId": "JtJAAuQNQbK9YlQpOiqNiw", + "rank": 1595839928, "data": {}, - "expires": "2019-12-11T14:26:39.331Z" + "expires": "2020-08-24T08:59:09.086Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.macosx64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.macosx64-opt index 13875efe..e334cd21 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.macosx64-opt +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.macosx64-opt @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.try.latest.firefox.macosx64-opt", - "taskId": "b7P_ohf8Q3O2XPUy03yxkg", - "rank": 1573655056, + "taskId": "VfBapUHaSmS2Q2QXKuhnKA", + "rank": 1595839928, "data": {}, - "expires": "2019-12-11T14:26:39.362Z" + "expires": "2020-08-24T08:59:09.570Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.win64-aarch64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.win64-aarch64-debug index 204db846..6ca55ea1 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.win64-aarch64-debug +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.win64-aarch64-debug @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.try.latest.firefox.win64-aarch64-debug", - "taskId": "dOSP7dRtSNS9_63k1zBnnA", - "rank": 1573651631, + "taskId": "KDqDJexDRIOpokdZHOOKPg", + "rank": 1595839928, "data": {}, - "expires": "2019-12-11T13:29:19.955Z" + "expires": "2020-08-24T08:59:09.076Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.win64-aarch64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.win64-aarch64-opt index 672ff894..cf487f2a 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.win64-aarch64-opt +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.win64-aarch64-opt @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.try.latest.firefox.win64-aarch64-opt", - "taskId": "HQf-0m7FScyEDkp53DN1Zw", - "rank": 1573655056, + "taskId": "bheUIrI2S521jjVl4E07dA", + "rank": 1595839928, "data": {}, - "expires": "2019-12-11T14:26:39.311Z" + "expires": "2020-08-24T08:59:09.020Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.win64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.win64-debug index 6790d233..9e171959 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.win64-debug +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.win64-debug @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.try.latest.firefox.win64-debug", - "taskId": "OZlJNK40RJy9Z0svwjyegg", - "rank": 1573653655, + "taskId": "IcvNfH9ORHO7D-nLmmFkFg", + "rank": 1595857713, "data": {}, - "expires": "2019-12-11T14:03:21.783Z" + "expires": "2020-08-24T13:54:31.666Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.win64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.win64-opt index f34f4dba..0af5acc7 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.win64-opt +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.firefox.win64-opt @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.try.latest.firefox.win64-opt", - "taskId": "OmdpCblNQDujjDDOzsiI2A", - "rank": 1573658770, + "taskId": "ET3AEftjTpG20Ee7-y-LUw", + "rank": 1595858172, "data": {}, - "expires": "2019-12-11T15:28:25.846Z" + "expires": "2020-08-24T14:01:21.505Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.mobile.android-aarch64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.mobile.android-aarch64-opt index 7b2d8ff8..d47446ad 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.mobile.android-aarch64-opt +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.mobile.android-aarch64-opt @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.try.latest.mobile.android-aarch64-opt", - "taskId": "U2B2NjK-SNWjIx0_3LBq5Q", - "rank": 1573655056, + "taskId": "evGCcA2DRiaGWc08NmtXhA", + "rank": 1595857036, "data": {}, - "expires": "2019-12-11T14:26:39.345Z" + "expires": "2020-08-24T13:43:31.839Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.mobile.android-api-16-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.mobile.android-api-16-debug index b50e182d..be3b1854 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.mobile.android-api-16-debug +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.mobile.android-api-16-debug @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.try.latest.mobile.android-api-16-debug", - "taskId": "O31iN2ScQcCoEDmpQwFJLw", - "rank": 1573654832, + "taskId": "GvUiVimuRnyk27mDsZyAzQ", + "rank": 1595857036, "data": {}, - "expires": "2019-12-11T14:23:00.982Z" + "expires": "2020-08-24T13:43:31.648Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.mobile.android-api-16-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.mobile.android-api-16-opt index 4092221f..c1f7a05d 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.mobile.android-api-16-opt +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.mobile.android-api-16-opt @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.try.latest.mobile.android-api-16-opt", - "taskId": "XTw9IgQkRHqMiVl7I_jJGQ", - "rank": 1573659693, + "taskId": "OnEnOx5SQYG17809Uz0JsQ", + "rank": 1595857597, "data": {}, - "expires": "2019-12-11T15:43:54.535Z" + "expires": "2020-08-24T13:52:34.850Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.mobile.android-x86-fuzzing-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.mobile.android-x86-fuzzing-debug index c3b66c00..9ed96b01 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.mobile.android-x86-fuzzing-debug +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.mobile.android-x86-fuzzing-debug @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.try.latest.mobile.android-x86-fuzzing-debug", - "taskId": "JZdGoL72RzGKEkSUmcOikA", - "rank": 1573646084, + "taskId": "PW2t8ekFTs2u4yrFVzmksQ", + "rank": 1595857597, "data": {}, - "expires": "2019-12-11T11:59:58.281Z" + "expires": "2020-08-24T13:52:34.870Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.mobile.android-x86-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.mobile.android-x86-opt index 5d6d5ab5..98de38dc 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.mobile.android-x86-opt +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.mobile.android-x86-opt @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.try.latest.mobile.android-x86-opt", - "taskId": "I_YZfyq-RQaKlB7F5kw_fw", - "rank": 1573655056, + "taskId": "b0gCrxJOT6GrUbE1WlCvlw", + "rank": 1595857036, "data": {}, - "expires": "2019-12-11T14:26:39.371Z" + "expires": "2020-08-24T13:43:31.589Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.mobile.android-x86_64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.mobile.android-x86_64-opt index c776c903..612e9ec5 100644 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.mobile.android-x86_64-opt +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.latest.mobile.android-x86_64-opt @@ -1,7 +1,7 @@ { "namespace": "gecko.v2.try.latest.mobile.android-x86_64-opt", - "taskId": "XPCJjSu3T-2FRWBJrMndFg", - "rank": 1573657734, + "taskId": "f1fzXEpmRDe34boNc_Cklg", + "rank": 1595856190, "data": {}, - "expires": "2019-12-11T15:11:36.355Z" + "expires": "2020-08-24T13:29:30.817Z" } \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.linux-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.linux-debug deleted file mode 100644 index 6699acbe..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.linux-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.linux-debug", - "taskId": "KoFeMfZZRCGuqP6olWerag", - "rank": 1573603248, - "data": {}, - "expires": "2019-12-11T00:03:45.385Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.linux-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.linux-opt deleted file mode 100644 index bcf6276e..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.linux-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.linux-opt", - "taskId": "HVoX1ojESkaTOYjkbXMAog", - "rank": 1573603248, - "data": {}, - "expires": "2019-12-11T00:03:46.954Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.linux64-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.linux64-asan-opt deleted file mode 100644 index 57e18ea7..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.linux64-asan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.linux64-asan-opt", - "taskId": "Ke5DPkkgT4WoVrLyWYoXvg", - "rank": 1573603248, - "data": {}, - "expires": "2019-12-11T00:03:46.921Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.linux64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.linux64-debug deleted file mode 100644 index 937e65fc..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.linux64-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.linux64-debug", - "taskId": "JaDq3URwS9CfroMX_eiElw", - "rank": 1573603248, - "data": {}, - "expires": "2019-12-11T00:03:46.881Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.linux64-fuzzing-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.linux64-fuzzing-asan-opt deleted file mode 100644 index 2a604d0a..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.linux64-fuzzing-asan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.linux64-fuzzing-asan-opt", - "taskId": "Q5Nn9JbiQoWYEsz9QWBWHg", - "rank": 1573603248, - "data": {}, - "expires": "2019-12-11T00:03:46.512Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.linux64-fuzzing-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.linux64-fuzzing-debug deleted file mode 100644 index c2d02f48..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.linux64-fuzzing-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.linux64-fuzzing-debug", - "taskId": "LDzz-xQIR9-ISs5mLpU0JQ", - "rank": 1573603248, - "data": {}, - "expires": "2019-12-11T00:03:45.390Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.linux64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.linux64-opt deleted file mode 100644 index 42b63f17..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.linux64-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.linux64-opt", - "taskId": "ANLIRz0-TYuNSKG-tKqE9A", - "rank": 1573603248, - "data": {}, - "expires": "2019-12-11T00:03:45.418Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.linux64-valgrind-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.linux64-valgrind-opt deleted file mode 100644 index b02700d1..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.linux64-valgrind-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.linux64-valgrind-opt", - "taskId": "PYdVrPL4QI2ODE5JrH4JMw", - "rank": 1573603248, - "data": {}, - "expires": "2019-12-11T00:03:45.366Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.macosx64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.macosx64-debug deleted file mode 100644 index 44e01147..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.macosx64-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.macosx64-debug", - "taskId": "TkvRmZfjQum731yaCCSHYA", - "rank": 1573603248, - "data": {}, - "expires": "2019-12-11T00:03:46.872Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.macosx64-fuzzing-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.macosx64-fuzzing-asan-opt deleted file mode 100644 index 1621a251..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.macosx64-fuzzing-asan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.macosx64-fuzzing-asan-opt", - "taskId": "L1UtuR1OQo-6VWw5B99Quw", - "rank": 1573603248, - "data": {}, - "expires": "2019-12-11T00:03:47.159Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.macosx64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.macosx64-opt deleted file mode 100644 index ec479d97..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.macosx64-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.macosx64-opt", - "taskId": "OSj9EAeOT0qMSEmeID_bOQ", - "rank": 1573603248, - "data": {}, - "expires": "2019-12-11T00:03:45.420Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.win64-aarch64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.win64-aarch64-debug deleted file mode 100644 index afc08649..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.win64-aarch64-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.win64-aarch64-debug", - "taskId": "JDB9_hHBSWKG0rkqckUUoA", - "rank": 1573603248, - "data": {}, - "expires": "2019-12-11T00:03:46.969Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.win64-aarch64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.win64-aarch64-opt deleted file mode 100644 index 789306f5..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.win64-aarch64-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.win64-aarch64-opt", - "taskId": "H0o8ZQuEQH6xvxBu_kG8Vw", - "rank": 1573603248, - "data": {}, - "expires": "2019-12-11T00:03:46.879Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.win64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.win64-debug deleted file mode 100644 index 3aa53c13..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.win64-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.win64-debug", - "taskId": "Bzdv9e_ESXKvGN56YbtinQ", - "rank": 1573603248, - "data": {}, - "expires": "2019-12-11T00:03:46.720Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.win64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.win64-opt deleted file mode 100644 index 14655bda..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.win64-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113000048.firefox.win64-opt", - "taskId": "OGQdCEY0QWK-ndVafNGh5Q", - "rank": 1573603248, - "data": {}, - "expires": "2019-12-11T00:03:45.424Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.mobile.android-aarch64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.mobile.android-aarch64-opt deleted file mode 100644 index 6e047dcf..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.mobile.android-aarch64-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113000048.mobile.android-aarch64-opt", - "taskId": "aaEKMLiES8OhY-pLhg8UOg", - "rank": 1573603248, - "data": {}, - "expires": "2019-12-11T00:03:46.816Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.mobile.android-api-16-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.mobile.android-api-16-debug deleted file mode 100644 index 73e568e1..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.mobile.android-api-16-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113000048.mobile.android-api-16-debug", - "taskId": "X-yhvusST8WIVmn_JraLBg", - "rank": 1573603248, - "data": {}, - "expires": "2019-12-11T00:03:45.451Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.mobile.android-api-16-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.mobile.android-api-16-opt deleted file mode 100644 index c4f6b358..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.mobile.android-api-16-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113000048.mobile.android-api-16-opt", - "taskId": "BRDoq05RR9S48onZ55GiIQ", - "rank": 1573603248, - "data": {}, - "expires": "2019-12-11T00:03:45.388Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.mobile.android-x86-fuzzing-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.mobile.android-x86-fuzzing-debug deleted file mode 100644 index 9061a4d5..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.mobile.android-x86-fuzzing-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113000048.mobile.android-x86-fuzzing-debug", - "taskId": "QHkk9pAVQISP2xkEdbRmDg", - "rank": 1573603248, - "data": {}, - "expires": "2019-12-11T00:03:47.028Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.mobile.android-x86-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.mobile.android-x86-opt deleted file mode 100644 index 3c609e81..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.mobile.android-x86-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113000048.mobile.android-x86-opt", - "taskId": "bCXk7_ALRbqypcRnO17L6w", - "rank": 1573603248, - "data": {}, - "expires": "2019-12-11T00:03:47.119Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.mobile.android-x86_64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.mobile.android-x86_64-opt deleted file mode 100644 index db17ebf9..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.11.13.20191113000048.mobile.android-x86_64-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.pushdate.2019.11.13.20191113000048.mobile.android-x86_64-opt", - "taskId": "No1BJzSQR-eiWEd_mOd2BQ", - "rank": 1573603248, - "data": {}, - "expires": "2019-12-11T00:03:45.424Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.12.17.20191217001554.firefox.linux64-fuzzing-tsan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.12.17.20191217001554.firefox.linux64-fuzzing-tsan-opt deleted file mode 100644 index da2aaa3c..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.12.17.20191217001554.firefox.linux64-fuzzing-tsan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217001554.firefox.linux64-fuzzing-tsan-opt", - "taskId": "b4DETUtZSOyWNOwQb_Sp7A", - "rank": 1576541754, - "data": {}, - "expires": "2020-01-14T00:18:51.020Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.12.17.20191217001554.firefox.linux64-tsan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.12.17.20191217001554.firefox.linux64-tsan-opt deleted file mode 100644 index 64e09c1c..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2019.12.17.20191217001554.firefox.linux64-tsan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.pushdate.2019.12.17.20191217001554.firefox.linux64-tsan-opt", - "taskId": "AGcyb84sQR-V3Rr7_sU2-w", - "rank": 1576541754, - "data": {}, - "expires": "2020-01-14T00:18:52.626Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.17.20200717223501.firefox.linux64-valgrind-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.17.20200717223501.firefox.linux64-valgrind-opt new file mode 100644 index 00000000..06e11ef6 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.17.20200717223501.firefox.linux64-valgrind-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.pushdate.2020.07.17.20200717223501.firefox.linux64-valgrind-opt", + "taskId": "S3BnJj5jSq6wMLXw0eKhCQ", + "rank": 1595025301, + "data": {}, + "expires": "2020-08-14T22:41:36.168Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727000601.firefox.linux64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727000601.firefox.linux64-debug new file mode 100644 index 00000000..936544f7 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727000601.firefox.linux64-debug @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727000601.firefox.linux64-debug", + "taskId": "Zgd3NZSmQTy3jDpHPGs0tw", + "rank": 1595808361, + "data": {}, + "expires": "2020-08-24T00:11:28.196Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727003535.firefox.linux64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727003535.firefox.linux64-opt new file mode 100644 index 00000000..53aa7806 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727003535.firefox.linux64-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727003535.firefox.linux64-opt", + "taskId": "BsyfuvkZQyWYYDB8zfcxFQ", + "rank": 1595810135, + "data": {}, + "expires": "2020-08-24T00:40:19.258Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727003535.firefox.win64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727003535.firefox.win64-debug new file mode 100644 index 00000000..78abfe1e --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727003535.firefox.win64-debug @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727003535.firefox.win64-debug", + "taskId": "RN1Jla8wQSyDZIA2qEU1hQ", + "rank": 1595810135, + "data": {}, + "expires": "2020-08-24T00:40:19.239Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727003535.firefox.win64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727003535.firefox.win64-opt new file mode 100644 index 00000000..abd2be48 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727003535.firefox.win64-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727003535.firefox.win64-opt", + "taskId": "XACRhkT7RBK-xVATJLo_dQ", + "rank": 1595810135, + "data": {}, + "expires": "2020-08-24T00:40:19.246Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727003535.mobile.android-aarch64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727003535.mobile.android-aarch64-opt new file mode 100644 index 00000000..5678dda2 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727003535.mobile.android-aarch64-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727003535.mobile.android-aarch64-opt", + "taskId": "M1-kt-UfTP6PmyT8n625ag", + "rank": 1595810135, + "data": {}, + "expires": "2020-08-24T00:40:19.230Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727004544.firefox.macosx64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727004544.firefox.macosx64-debug new file mode 100644 index 00000000..7bf85d12 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727004544.firefox.macosx64-debug @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727004544.firefox.macosx64-debug", + "taskId": "blZICTjPSYSzSpQnY2b9fA", + "rank": 1595810744, + "data": {}, + "expires": "2020-08-24T00:53:22.420Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727004544.mobile.android-api-16-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727004544.mobile.android-api-16-debug new file mode 100644 index 00000000..105b5227 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727004544.mobile.android-api-16-debug @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727004544.mobile.android-api-16-debug", + "taskId": "XL3Omi71TmOT5iYdDu5LxQ", + "rank": 1595810744, + "data": {}, + "expires": "2020-08-24T00:53:22.616Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727014148.firefox.linux64-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727014148.firefox.linux64-asan-opt new file mode 100644 index 00000000..11f3fac3 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727014148.firefox.linux64-asan-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727014148.firefox.linux64-asan-opt", + "taskId": "LtxtYrEkQfCIPHaab5hV1A", + "rank": 1595814108, + "data": {}, + "expires": "2020-08-24T01:47:56.934Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727014148.firefox.linux64-tsan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727014148.firefox.linux64-tsan-opt new file mode 100644 index 00000000..fa7edec8 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727014148.firefox.linux64-tsan-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727014148.firefox.linux64-tsan-opt", + "taskId": "b6H3FLlDTjW4qsbrEu-gZg", + "rank": 1595814108, + "data": {}, + "expires": "2020-08-24T01:47:56.927Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727023128.firefox.linux64-fuzzing-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727023128.firefox.linux64-fuzzing-asan-opt new file mode 100644 index 00000000..d8deb1c5 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727023128.firefox.linux64-fuzzing-asan-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727023128.firefox.linux64-fuzzing-asan-opt", + "taskId": "Ig2OuYpHQemmaN4Qgjeh8g", + "rank": 1595817088, + "data": {}, + "expires": "2020-08-24T02:36:00.574Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727023128.firefox.macosx64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727023128.firefox.macosx64-opt new file mode 100644 index 00000000..398fa938 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727023128.firefox.macosx64-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727023128.firefox.macosx64-opt", + "taskId": "IpYg9A4STT6AHiecRaIqPA", + "rank": 1595817088, + "data": {}, + "expires": "2020-08-24T02:36:00.582Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727023128.mobile.android-x86_64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727023128.mobile.android-x86_64-opt new file mode 100644 index 00000000..d65c3ddb --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727023128.mobile.android-x86_64-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727023128.mobile.android-x86_64-opt", + "taskId": "dvuem12OQT6HASgIC2bm6A", + "rank": 1595817088, + "data": {}, + "expires": "2020-08-24T02:36:00.579Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727024623.firefox.linux-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727024623.firefox.linux-debug new file mode 100644 index 00000000..bff8ffbc --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727024623.firefox.linux-debug @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727024623.firefox.linux-debug", + "taskId": "BzdZklE_QVSZ8iZXQtyYsw", + "rank": 1595817983, + "data": {}, + "expires": "2020-08-24T02:50:54.661Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727024623.firefox.linux-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727024623.firefox.linux-opt new file mode 100644 index 00000000..ec3196a2 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727024623.firefox.linux-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727024623.firefox.linux-opt", + "taskId": "fdAblVGhSPqDHhsytrg3VA", + "rank": 1595817983, + "data": {}, + "expires": "2020-08-24T02:50:54.637Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727024623.firefox.linux64-fuzzing-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727024623.firefox.linux64-fuzzing-debug new file mode 100644 index 00000000..90422266 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727024623.firefox.linux64-fuzzing-debug @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727024623.firefox.linux64-fuzzing-debug", + "taskId": "EAsr0LAZRlKG0shvrKZRnw", + "rank": 1595817983, + "data": {}, + "expires": "2020-08-24T02:50:54.570Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727024623.firefox.linux64-fuzzing-tsan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727024623.firefox.linux64-fuzzing-tsan-opt new file mode 100644 index 00000000..e67a2183 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727024623.firefox.linux64-fuzzing-tsan-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727024623.firefox.linux64-fuzzing-tsan-opt", + "taskId": "O7uWNqWwSR-8PUnRG8vC-w", + "rank": 1595817983, + "data": {}, + "expires": "2020-08-24T02:50:54.844Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727024623.firefox.win64-aarch64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727024623.firefox.win64-aarch64-debug new file mode 100644 index 00000000..32f70ef9 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727024623.firefox.win64-aarch64-debug @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727024623.firefox.win64-aarch64-debug", + "taskId": "MLP6Ze71QbOqbVHM4ePilA", + "rank": 1595817983, + "data": {}, + "expires": "2020-08-24T02:50:54.602Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727024623.firefox.win64-aarch64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727024623.firefox.win64-aarch64-opt new file mode 100644 index 00000000..3d8a3f78 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727024623.firefox.win64-aarch64-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727024623.firefox.win64-aarch64-opt", + "taskId": "Ly5gcO58RXieI0iRcUKIyg", + "rank": 1595817983, + "data": {}, + "expires": "2020-08-24T02:50:54.588Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727024623.mobile.android-api-16-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727024623.mobile.android-api-16-opt new file mode 100644 index 00000000..9a6ebeba --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727024623.mobile.android-api-16-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727024623.mobile.android-api-16-opt", + "taskId": "NtdM3LKkSQ-FlQFqSkyHMw", + "rank": 1595817983, + "data": {}, + "expires": "2020-08-24T02:50:54.566Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727024623.mobile.android-x86-fuzzing-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727024623.mobile.android-x86-fuzzing-debug new file mode 100644 index 00000000..ca12d2f7 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727024623.mobile.android-x86-fuzzing-debug @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727024623.mobile.android-x86-fuzzing-debug", + "taskId": "Mub56ygrTKWXMZUubVoovg", + "rank": 1595817983, + "data": {}, + "expires": "2020-08-24T02:50:55.014Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727024623.mobile.android-x86-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727024623.mobile.android-x86-opt new file mode 100644 index 00000000..6867bd56 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727024623.mobile.android-x86-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727024623.mobile.android-x86-opt", + "taskId": "RWVs3aoYRZqpJBhT5z0T0w", + "rank": 1595817983, + "data": {}, + "expires": "2020-08-24T02:50:54.658Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727085208.firefox.macosx64-fuzzing-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727085208.firefox.macosx64-fuzzing-asan-opt new file mode 100644 index 00000000..ecb407a9 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.pushdate.2020.07.27.20200727085208.firefox.macosx64-fuzzing-asan-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.pushdate.2020.07.27.20200727085208.firefox.macosx64-fuzzing-asan-opt", + "taskId": "JtJAAuQNQbK9YlQpOiqNiw", + "rank": 1595839928, + "data": {}, + "expires": "2020-08-24T08:59:09.086Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.0e27829b5edf25746edcc684970c9e74f9604b4a.mobile.android-aarch64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.0e27829b5edf25746edcc684970c9e74f9604b4a.mobile.android-aarch64-opt new file mode 100644 index 00000000..74744115 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.0e27829b5edf25746edcc684970c9e74f9604b4a.mobile.android-aarch64-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.revision.0e27829b5edf25746edcc684970c9e74f9604b4a.mobile.android-aarch64-opt", + "taskId": "evGCcA2DRiaGWc08NmtXhA", + "rank": 1595857036, + "data": {}, + "expires": "2020-08-24T13:43:31.839Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.0e27829b5edf25746edcc684970c9e74f9604b4a.mobile.android-api-16-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.0e27829b5edf25746edcc684970c9e74f9604b4a.mobile.android-api-16-debug new file mode 100644 index 00000000..f3a12b8d --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.0e27829b5edf25746edcc684970c9e74f9604b4a.mobile.android-api-16-debug @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.revision.0e27829b5edf25746edcc684970c9e74f9604b4a.mobile.android-api-16-debug", + "taskId": "GvUiVimuRnyk27mDsZyAzQ", + "rank": 1595857036, + "data": {}, + "expires": "2020-08-24T13:43:31.648Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.0e27829b5edf25746edcc684970c9e74f9604b4a.mobile.android-x86-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.0e27829b5edf25746edcc684970c9e74f9604b4a.mobile.android-x86-opt new file mode 100644 index 00000000..8390c8a5 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.0e27829b5edf25746edcc684970c9e74f9604b4a.mobile.android-x86-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.revision.0e27829b5edf25746edcc684970c9e74f9604b4a.mobile.android-x86-opt", + "taskId": "b0gCrxJOT6GrUbE1WlCvlw", + "rank": 1595857036, + "data": {}, + "expires": "2020-08-24T13:43:31.589Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.11bafbfe8e04325233d778083460426d2d1a8fa9.mobile.android-x86_64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.11bafbfe8e04325233d778083460426d2d1a8fa9.mobile.android-x86_64-opt new file mode 100644 index 00000000..4b4024c6 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.11bafbfe8e04325233d778083460426d2d1a8fa9.mobile.android-x86_64-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.revision.11bafbfe8e04325233d778083460426d2d1a8fa9.mobile.android-x86_64-opt", + "taskId": "f1fzXEpmRDe34boNc_Cklg", + "rank": 1595856190, + "data": {}, + "expires": "2020-08-24T13:29:30.817Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.1669fa43c9edb5584cda1c8b2250a5beb3bc0c71.firefox.linux64-fuzzing-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.1669fa43c9edb5584cda1c8b2250a5beb3bc0c71.firefox.linux64-fuzzing-debug deleted file mode 100644 index 42b12094..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.1669fa43c9edb5584cda1c8b2250a5beb3bc0c71.firefox.linux64-fuzzing-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.revision.1669fa43c9edb5584cda1c8b2250a5beb3bc0c71.firefox.linux64-fuzzing-debug", - "taskId": "b_mIGMiOS6y5KsyUgJP4QQ", - "rank": 1573646084, - "data": {}, - "expires": "2019-12-11T11:59:57.684Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.1669fa43c9edb5584cda1c8b2250a5beb3bc0c71.mobile.android-x86-fuzzing-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.1669fa43c9edb5584cda1c8b2250a5beb3bc0c71.mobile.android-x86-fuzzing-debug deleted file mode 100644 index ec150c23..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.1669fa43c9edb5584cda1c8b2250a5beb3bc0c71.mobile.android-x86-fuzzing-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.revision.1669fa43c9edb5584cda1c8b2250a5beb3bc0c71.mobile.android-x86-fuzzing-debug", - "taskId": "JZdGoL72RzGKEkSUmcOikA", - "rank": 1573646084, - "data": {}, - "expires": "2019-12-11T11:59:58.281Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.16bedc0978b033b62b1a2378c838ab8565233d58.firefox.win64-aarch64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.16bedc0978b033b62b1a2378c838ab8565233d58.firefox.win64-aarch64-debug deleted file mode 100644 index 88efac76..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.16bedc0978b033b62b1a2378c838ab8565233d58.firefox.win64-aarch64-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.revision.16bedc0978b033b62b1a2378c838ab8565233d58.firefox.win64-aarch64-debug", - "taskId": "dOSP7dRtSNS9_63k1zBnnA", - "rank": 1573651631, - "data": {}, - "expires": "2019-12-11T13:29:19.955Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.2e701e455f3046799141b8be67c79a73291f0bff.firefox.win64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.2e701e455f3046799141b8be67c79a73291f0bff.firefox.win64-debug deleted file mode 100644 index 7ab57183..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.2e701e455f3046799141b8be67c79a73291f0bff.firefox.win64-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.revision.2e701e455f3046799141b8be67c79a73291f0bff.firefox.win64-debug", - "taskId": "OZlJNK40RJy9Z0svwjyegg", - "rank": 1573653655, - "data": {}, - "expires": "2019-12-11T14:03:21.783Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.309bc57d580667ae85cee287d3d2b86d7fb21f01.firefox.linux64-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.309bc57d580667ae85cee287d3d2b86d7fb21f01.firefox.linux64-asan-opt new file mode 100644 index 00000000..08fa5835 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.309bc57d580667ae85cee287d3d2b86d7fb21f01.firefox.linux64-asan-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.revision.309bc57d580667ae85cee287d3d2b86d7fb21f01.firefox.linux64-asan-opt", + "taskId": "Ku53XFq6Q1uRpOtYtpuYog", + "rank": 1595857398, + "data": {}, + "expires": "2020-08-24T13:50:07.154Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.6e604e8ff32ade90bdee21b40366c365039ec7f2.firefox.linux-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.6e604e8ff32ade90bdee21b40366c365039ec7f2.firefox.linux-opt new file mode 100644 index 00000000..2f2fbe41 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.6e604e8ff32ade90bdee21b40366c365039ec7f2.firefox.linux-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.revision.6e604e8ff32ade90bdee21b40366c365039ec7f2.firefox.linux-opt", + "taskId": "ZOtp1_ZJT3iBI0RlqUe6Sw", + "rank": 1595839928, + "data": {}, + "expires": "2020-08-24T08:59:09.021Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.6e604e8ff32ade90bdee21b40366c365039ec7f2.firefox.macosx64-fuzzing-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.6e604e8ff32ade90bdee21b40366c365039ec7f2.firefox.macosx64-fuzzing-asan-opt new file mode 100644 index 00000000..a955bc63 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.6e604e8ff32ade90bdee21b40366c365039ec7f2.firefox.macosx64-fuzzing-asan-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.revision.6e604e8ff32ade90bdee21b40366c365039ec7f2.firefox.macosx64-fuzzing-asan-opt", + "taskId": "JtJAAuQNQbK9YlQpOiqNiw", + "rank": 1595839928, + "data": {}, + "expires": "2020-08-24T08:59:09.086Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.6e604e8ff32ade90bdee21b40366c365039ec7f2.firefox.macosx64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.6e604e8ff32ade90bdee21b40366c365039ec7f2.firefox.macosx64-opt new file mode 100644 index 00000000..874643da --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.6e604e8ff32ade90bdee21b40366c365039ec7f2.firefox.macosx64-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.revision.6e604e8ff32ade90bdee21b40366c365039ec7f2.firefox.macosx64-opt", + "taskId": "VfBapUHaSmS2Q2QXKuhnKA", + "rank": 1595839928, + "data": {}, + "expires": "2020-08-24T08:59:09.570Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.6e604e8ff32ade90bdee21b40366c365039ec7f2.firefox.win64-aarch64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.6e604e8ff32ade90bdee21b40366c365039ec7f2.firefox.win64-aarch64-debug new file mode 100644 index 00000000..d6e6d9bd --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.6e604e8ff32ade90bdee21b40366c365039ec7f2.firefox.win64-aarch64-debug @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.revision.6e604e8ff32ade90bdee21b40366c365039ec7f2.firefox.win64-aarch64-debug", + "taskId": "KDqDJexDRIOpokdZHOOKPg", + "rank": 1595839928, + "data": {}, + "expires": "2020-08-24T08:59:09.076Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.6e604e8ff32ade90bdee21b40366c365039ec7f2.firefox.win64-aarch64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.6e604e8ff32ade90bdee21b40366c365039ec7f2.firefox.win64-aarch64-opt new file mode 100644 index 00000000..de2c27cc --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.6e604e8ff32ade90bdee21b40366c365039ec7f2.firefox.win64-aarch64-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.revision.6e604e8ff32ade90bdee21b40366c365039ec7f2.firefox.win64-aarch64-opt", + "taskId": "bheUIrI2S521jjVl4E07dA", + "rank": 1595839928, + "data": {}, + "expires": "2020-08-24T08:59:09.020Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.70426fd9a691ac3a6507d4861cb714a0fb6dc188.firefox.linux64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.70426fd9a691ac3a6507d4861cb714a0fb6dc188.firefox.linux64-debug new file mode 100644 index 00000000..b04f2451 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.70426fd9a691ac3a6507d4861cb714a0fb6dc188.firefox.linux64-debug @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.revision.70426fd9a691ac3a6507d4861cb714a0fb6dc188.firefox.linux64-debug", + "taskId": "M7t6MjptQwmQ9RNCjzeV9w", + "rank": 1595857713, + "data": {}, + "expires": "2020-08-24T13:54:31.669Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.70426fd9a691ac3a6507d4861cb714a0fb6dc188.firefox.macosx64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.70426fd9a691ac3a6507d4861cb714a0fb6dc188.firefox.macosx64-debug new file mode 100644 index 00000000..cbfcf677 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.70426fd9a691ac3a6507d4861cb714a0fb6dc188.firefox.macosx64-debug @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.revision.70426fd9a691ac3a6507d4861cb714a0fb6dc188.firefox.macosx64-debug", + "taskId": "AReM_qPXSK6ZkfwSf-YTNg", + "rank": 1595857713, + "data": {}, + "expires": "2020-08-24T13:54:31.650Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.70426fd9a691ac3a6507d4861cb714a0fb6dc188.firefox.win64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.70426fd9a691ac3a6507d4861cb714a0fb6dc188.firefox.win64-debug new file mode 100644 index 00000000..92ecf5ee --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.70426fd9a691ac3a6507d4861cb714a0fb6dc188.firefox.win64-debug @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.revision.70426fd9a691ac3a6507d4861cb714a0fb6dc188.firefox.win64-debug", + "taskId": "IcvNfH9ORHO7D-nLmmFkFg", + "rank": 1595857713, + "data": {}, + "expires": "2020-08-24T13:54:31.666Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.76120fed0d42283463b8e066be47892ec427aa67.firefox.linux64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.76120fed0d42283463b8e066be47892ec427aa67.firefox.linux64-opt new file mode 100644 index 00000000..1b890eec --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.76120fed0d42283463b8e066be47892ec427aa67.firefox.linux64-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.revision.76120fed0d42283463b8e066be47892ec427aa67.firefox.linux64-opt", + "taskId": "YLL_snAESdOl6DtLR6SmdQ", + "rank": 1595858172, + "data": {}, + "expires": "2020-08-24T14:01:21.519Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.76120fed0d42283463b8e066be47892ec427aa67.firefox.win64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.76120fed0d42283463b8e066be47892ec427aa67.firefox.win64-opt new file mode 100644 index 00000000..56f7f218 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.76120fed0d42283463b8e066be47892ec427aa67.firefox.win64-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.revision.76120fed0d42283463b8e066be47892ec427aa67.firefox.win64-opt", + "taskId": "ET3AEftjTpG20Ee7-y-LUw", + "rank": 1595858172, + "data": {}, + "expires": "2020-08-24T14:01:21.505Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.826eda1ecfb397809fa2fe7c52e1d37d01be330a.firefox.linux64-valgrind-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.826eda1ecfb397809fa2fe7c52e1d37d01be330a.firefox.linux64-valgrind-opt new file mode 100644 index 00000000..165c0b6b --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.826eda1ecfb397809fa2fe7c52e1d37d01be330a.firefox.linux64-valgrind-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.revision.826eda1ecfb397809fa2fe7c52e1d37d01be330a.firefox.linux64-valgrind-opt", + "taskId": "S3BnJj5jSq6wMLXw0eKhCQ", + "rank": 1595025301, + "data": {}, + "expires": "2020-08-14T22:41:36.168Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.85bbe38473dc74b3b5e9a1d183e42698ddf62f7f.mobile.android-api-16-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.85bbe38473dc74b3b5e9a1d183e42698ddf62f7f.mobile.android-api-16-debug deleted file mode 100644 index 5339320b..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.85bbe38473dc74b3b5e9a1d183e42698ddf62f7f.mobile.android-api-16-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.revision.85bbe38473dc74b3b5e9a1d183e42698ddf62f7f.mobile.android-api-16-debug", - "taskId": "O31iN2ScQcCoEDmpQwFJLw", - "rank": 1573654832, - "data": {}, - "expires": "2019-12-11T14:23:00.982Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.93918c6073b0127bdd9b8808ec03c1bf9b795994.firefox.linux64-fuzzing-tsan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.93918c6073b0127bdd9b8808ec03c1bf9b795994.firefox.linux64-fuzzing-tsan-opt deleted file mode 100644 index d7ab1bcd..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.93918c6073b0127bdd9b8808ec03c1bf9b795994.firefox.linux64-fuzzing-tsan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.revision.93918c6073b0127bdd9b8808ec03c1bf9b795994.firefox.linux64-fuzzing-tsan-opt", - "taskId": "MMHs5aKxS4GSXaJVtvfK6A", - "rank": 1576610175, - "data": {}, - "expires": "2020-01-14T19:18:49.371Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.93918c6073b0127bdd9b8808ec03c1bf9b795994.firefox.linux64-tsan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.93918c6073b0127bdd9b8808ec03c1bf9b795994.firefox.linux64-tsan-opt deleted file mode 100644 index 38f98d9d..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.93918c6073b0127bdd9b8808ec03c1bf9b795994.firefox.linux64-tsan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.revision.93918c6073b0127bdd9b8808ec03c1bf9b795994.firefox.linux64-tsan-opt", - "taskId": "SOKM7jKMQsmYR8RY3rjSbA", - "rank": 1576610175, - "data": {}, - "expires": "2020-01-14T19:18:49.376Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.9524bc63eaae1ef9b7c8eb85bc62380f4f56786c.firefox.linux64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.9524bc63eaae1ef9b7c8eb85bc62380f4f56786c.firefox.linux64-debug deleted file mode 100644 index f5422bae..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.9524bc63eaae1ef9b7c8eb85bc62380f4f56786c.firefox.linux64-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.revision.9524bc63eaae1ef9b7c8eb85bc62380f4f56786c.firefox.linux64-debug", - "taskId": "FKLwujNvTGynoiAm9Q7xKQ", - "rank": 1573661727, - "data": {}, - "expires": "2019-12-11T16:18:01.733Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.9524bc63eaae1ef9b7c8eb85bc62380f4f56786c.firefox.linux64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.9524bc63eaae1ef9b7c8eb85bc62380f4f56786c.firefox.linux64-opt deleted file mode 100644 index b2904f70..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.9524bc63eaae1ef9b7c8eb85bc62380f4f56786c.firefox.linux64-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.revision.9524bc63eaae1ef9b7c8eb85bc62380f4f56786c.firefox.linux64-opt", - "taskId": "f49zCWoJQGetJ7BX-dCTJw", - "rank": 1573661727, - "data": {}, - "expires": "2019-12-11T16:18:01.723Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.a6face7a81f48e3e68d32933665d9dd389dc8cbd.firefox.macosx64-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.a6face7a81f48e3e68d32933665d9dd389dc8cbd.firefox.macosx64-debug deleted file mode 100644 index 66c372b8..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.a6face7a81f48e3e68d32933665d9dd389dc8cbd.firefox.macosx64-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.revision.a6face7a81f48e3e68d32933665d9dd389dc8cbd.firefox.macosx64-debug", - "taskId": "P1Rv4BljTAuUkmdl8y9bhw", - "rank": 1573661480, - "data": {}, - "expires": "2019-12-11T16:13:29.836Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.a9395b9ab89526cb934f0d4aa1dc03670c3757c0.firefox.linux64-fuzzing-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.a9395b9ab89526cb934f0d4aa1dc03670c3757c0.firefox.linux64-fuzzing-asan-opt deleted file mode 100644 index 31089b78..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.a9395b9ab89526cb934f0d4aa1dc03670c3757c0.firefox.linux64-fuzzing-asan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.revision.a9395b9ab89526cb934f0d4aa1dc03670c3757c0.firefox.linux64-fuzzing-asan-opt", - "taskId": "atlDqsiJS9iEF2agw_qjCQ", - "rank": 1573655056, - "data": {}, - "expires": "2019-12-11T14:26:39.371Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.a9395b9ab89526cb934f0d4aa1dc03670c3757c0.firefox.linux64-valgrind-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.a9395b9ab89526cb934f0d4aa1dc03670c3757c0.firefox.linux64-valgrind-opt deleted file mode 100644 index dc2c04f6..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.a9395b9ab89526cb934f0d4aa1dc03670c3757c0.firefox.linux64-valgrind-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.revision.a9395b9ab89526cb934f0d4aa1dc03670c3757c0.firefox.linux64-valgrind-opt", - "taskId": "Wtj1MZvfRReyOR7uG_PMxQ", - "rank": 1573655056, - "data": {}, - "expires": "2019-12-11T14:26:39.322Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.a9395b9ab89526cb934f0d4aa1dc03670c3757c0.firefox.macosx64-fuzzing-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.a9395b9ab89526cb934f0d4aa1dc03670c3757c0.firefox.macosx64-fuzzing-asan-opt deleted file mode 100644 index 0d02540e..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.a9395b9ab89526cb934f0d4aa1dc03670c3757c0.firefox.macosx64-fuzzing-asan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.revision.a9395b9ab89526cb934f0d4aa1dc03670c3757c0.firefox.macosx64-fuzzing-asan-opt", - "taskId": "Fwy0SF8zRMqipgIp7of-zA", - "rank": 1573655056, - "data": {}, - "expires": "2019-12-11T14:26:39.331Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.a9395b9ab89526cb934f0d4aa1dc03670c3757c0.firefox.macosx64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.a9395b9ab89526cb934f0d4aa1dc03670c3757c0.firefox.macosx64-opt deleted file mode 100644 index 42fa8318..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.a9395b9ab89526cb934f0d4aa1dc03670c3757c0.firefox.macosx64-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.revision.a9395b9ab89526cb934f0d4aa1dc03670c3757c0.firefox.macosx64-opt", - "taskId": "b7P_ohf8Q3O2XPUy03yxkg", - "rank": 1573655056, - "data": {}, - "expires": "2019-12-11T14:26:39.362Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.a9395b9ab89526cb934f0d4aa1dc03670c3757c0.firefox.win64-aarch64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.a9395b9ab89526cb934f0d4aa1dc03670c3757c0.firefox.win64-aarch64-opt deleted file mode 100644 index 75e7cce4..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.a9395b9ab89526cb934f0d4aa1dc03670c3757c0.firefox.win64-aarch64-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.revision.a9395b9ab89526cb934f0d4aa1dc03670c3757c0.firefox.win64-aarch64-opt", - "taskId": "HQf-0m7FScyEDkp53DN1Zw", - "rank": 1573655056, - "data": {}, - "expires": "2019-12-11T14:26:39.311Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.a9395b9ab89526cb934f0d4aa1dc03670c3757c0.mobile.android-aarch64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.a9395b9ab89526cb934f0d4aa1dc03670c3757c0.mobile.android-aarch64-opt deleted file mode 100644 index 0fed3053..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.a9395b9ab89526cb934f0d4aa1dc03670c3757c0.mobile.android-aarch64-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.revision.a9395b9ab89526cb934f0d4aa1dc03670c3757c0.mobile.android-aarch64-opt", - "taskId": "U2B2NjK-SNWjIx0_3LBq5Q", - "rank": 1573655056, - "data": {}, - "expires": "2019-12-11T14:26:39.345Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.a9395b9ab89526cb934f0d4aa1dc03670c3757c0.mobile.android-x86-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.a9395b9ab89526cb934f0d4aa1dc03670c3757c0.mobile.android-x86-opt deleted file mode 100644 index 44054641..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.a9395b9ab89526cb934f0d4aa1dc03670c3757c0.mobile.android-x86-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.revision.a9395b9ab89526cb934f0d4aa1dc03670c3757c0.mobile.android-x86-opt", - "taskId": "I_YZfyq-RQaKlB7F5kw_fw", - "rank": 1573655056, - "data": {}, - "expires": "2019-12-11T14:26:39.371Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.cea19434bc6fde80e3d7cddf31fd598ff465ef16.firefox.linux-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.cea19434bc6fde80e3d7cddf31fd598ff465ef16.firefox.linux-debug new file mode 100644 index 00000000..e780a683 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.cea19434bc6fde80e3d7cddf31fd598ff465ef16.firefox.linux-debug @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.revision.cea19434bc6fde80e3d7cddf31fd598ff465ef16.firefox.linux-debug", + "taskId": "c67_iKakT1agkfRvdzlH3w", + "rank": 1595844522, + "data": {}, + "expires": "2020-08-24T10:14:03.147Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.cfa38765c407180ae40f1f10005adb73d47e1a18.firefox.linux64-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.cfa38765c407180ae40f1f10005adb73d47e1a18.firefox.linux64-asan-opt deleted file mode 100644 index e3e3097e..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.cfa38765c407180ae40f1f10005adb73d47e1a18.firefox.linux64-asan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.revision.cfa38765c407180ae40f1f10005adb73d47e1a18.firefox.linux64-asan-opt", - "taskId": "T_IIHhb-Q2KVGfS8Q7yd-A", - "rank": 1573657734, - "data": {}, - "expires": "2019-12-11T15:11:36.368Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.cfa38765c407180ae40f1f10005adb73d47e1a18.mobile.android-x86_64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.cfa38765c407180ae40f1f10005adb73d47e1a18.mobile.android-x86_64-opt deleted file mode 100644 index 9cc6e6bd..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.cfa38765c407180ae40f1f10005adb73d47e1a18.mobile.android-x86_64-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.revision.cfa38765c407180ae40f1f10005adb73d47e1a18.mobile.android-x86_64-opt", - "taskId": "XPCJjSu3T-2FRWBJrMndFg", - "rank": 1573657734, - "data": {}, - "expires": "2019-12-11T15:11:36.355Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.d298d18c39dd5c2393e6e132bc119a9d99423569.mobile.android-api-16-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.d298d18c39dd5c2393e6e132bc119a9d99423569.mobile.android-api-16-opt deleted file mode 100644 index 656b6cdc..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.d298d18c39dd5c2393e6e132bc119a9d99423569.mobile.android-api-16-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.revision.d298d18c39dd5c2393e6e132bc119a9d99423569.mobile.android-api-16-opt", - "taskId": "XTw9IgQkRHqMiVl7I_jJGQ", - "rank": 1573659693, - "data": {}, - "expires": "2019-12-11T15:43:54.535Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.ee42d2b391ce5ff5360e55adb0ac347514914d35.firefox.linux-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.ee42d2b391ce5ff5360e55adb0ac347514914d35.firefox.linux-debug deleted file mode 100644 index 4ee2dc3f..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.ee42d2b391ce5ff5360e55adb0ac347514914d35.firefox.linux-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.revision.ee42d2b391ce5ff5360e55adb0ac347514914d35.firefox.linux-debug", - "taskId": "CQHN-TC9SfOx4lsuks4AmA", - "rank": 1573653577, - "data": {}, - "expires": "2019-12-11T14:02:38.670Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.f36e2474d1eb91a657a494f325caa33ef5311f77.firefox.linux64-fuzzing-asan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.f36e2474d1eb91a657a494f325caa33ef5311f77.firefox.linux64-fuzzing-asan-opt new file mode 100644 index 00000000..6d5eac90 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.f36e2474d1eb91a657a494f325caa33ef5311f77.firefox.linux64-fuzzing-asan-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.revision.f36e2474d1eb91a657a494f325caa33ef5311f77.firefox.linux64-fuzzing-asan-opt", + "taskId": "IlMYW-5xQeiZXIMUZYTrEg", + "rank": 1595851277, + "data": {}, + "expires": "2020-08-24T12:05:51.976Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.f36e2474d1eb91a657a494f325caa33ef5311f77.firefox.linux64-fuzzing-tsan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.f36e2474d1eb91a657a494f325caa33ef5311f77.firefox.linux64-fuzzing-tsan-opt new file mode 100644 index 00000000..53f3506e --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.f36e2474d1eb91a657a494f325caa33ef5311f77.firefox.linux64-fuzzing-tsan-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.revision.f36e2474d1eb91a657a494f325caa33ef5311f77.firefox.linux64-fuzzing-tsan-opt", + "taskId": "EyvCI9VSQCabkLWQUnrj1w", + "rank": 1595851277, + "data": {}, + "expires": "2020-08-24T12:05:51.964Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.f36e2474d1eb91a657a494f325caa33ef5311f77.firefox.linux64-tsan-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.f36e2474d1eb91a657a494f325caa33ef5311f77.firefox.linux64-tsan-opt new file mode 100644 index 00000000..62b919d8 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.f36e2474d1eb91a657a494f325caa33ef5311f77.firefox.linux64-tsan-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.revision.f36e2474d1eb91a657a494f325caa33ef5311f77.firefox.linux64-tsan-opt", + "taskId": "N_K3Ym8MQL-bnraItA7_cQ", + "rank": 1595851277, + "data": {}, + "expires": "2020-08-24T12:05:51.978Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.fc1f062533c41f097e9dd166d7632105b146b899.firefox.linux-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.fc1f062533c41f097e9dd166d7632105b146b899.firefox.linux-opt deleted file mode 100644 index 23b8ec9d..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.fc1f062533c41f097e9dd166d7632105b146b899.firefox.linux-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.revision.fc1f062533c41f097e9dd166d7632105b146b899.firefox.linux-opt", - "taskId": "bAwy3FOSRU6FCJzuNlxVrg", - "rank": 1573658770, - "data": {}, - "expires": "2019-12-11T15:28:25.840Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.fc1f062533c41f097e9dd166d7632105b146b899.firefox.win64-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.fc1f062533c41f097e9dd166d7632105b146b899.firefox.win64-opt deleted file mode 100644 index 20a92d21..00000000 --- a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.fc1f062533c41f097e9dd166d7632105b146b899.firefox.win64-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.try.revision.fc1f062533c41f097e9dd166d7632105b146b899.firefox.win64-opt", - "taskId": "OmdpCblNQDujjDDOzsiI2A", - "rank": 1573658770, - "data": {}, - "expires": "2019-12-11T15:28:25.846Z" -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.fd56c548bf68b70f8a4bbfbf553fdfc83c9cf956.firefox.linux64-fuzzing-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.fd56c548bf68b70f8a4bbfbf553fdfc83c9cf956.firefox.linux64-fuzzing-debug new file mode 100644 index 00000000..4293abb7 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.fd56c548bf68b70f8a4bbfbf553fdfc83c9cf956.firefox.linux64-fuzzing-debug @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.revision.fd56c548bf68b70f8a4bbfbf553fdfc83c9cf956.firefox.linux64-fuzzing-debug", + "taskId": "Z5jAUsk5TMKMIeB0HsW8-A", + "rank": 1595857597, + "data": {}, + "expires": "2020-08-24T13:52:34.901Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.fd56c548bf68b70f8a4bbfbf553fdfc83c9cf956.mobile.android-api-16-opt b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.fd56c548bf68b70f8a4bbfbf553fdfc83c9cf956.mobile.android-api-16-opt new file mode 100644 index 00000000..ae358337 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.fd56c548bf68b70f8a4bbfbf553fdfc83c9cf956.mobile.android-api-16-opt @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.revision.fd56c548bf68b70f8a4bbfbf553fdfc83c9cf956.mobile.android-api-16-opt", + "taskId": "OnEnOx5SQYG17809Uz0JsQ", + "rank": 1595857597, + "data": {}, + "expires": "2020-08-24T13:52:34.850Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.fd56c548bf68b70f8a4bbfbf553fdfc83c9cf956.mobile.android-x86-fuzzing-debug b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.fd56c548bf68b70f8a4bbfbf553fdfc83c9cf956.mobile.android-x86-fuzzing-debug new file mode 100644 index 00000000..32c34973 --- /dev/null +++ b/tests/mock-firefoxci/api/index/v1/task/gecko.v2.try.revision.fd56c548bf68b70f8a4bbfbf553fdfc83c9cf956.mobile.android-x86-fuzzing-debug @@ -0,0 +1,7 @@ +{ + "namespace": "gecko.v2.try.revision.fd56c548bf68b70f8a4bbfbf553fdfc83c9cf956.mobile.android-x86-fuzzing-debug", + "taskId": "PW2t8ekFTs2u4yrFVzmksQ", + "rank": 1595857597, + "data": {}, + "expires": "2020-08-24T13:52:34.870Z" +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/AGcyb84sQR-V3Rr7_sU2-w/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/AGcyb84sQR-V3Rr7_sU2-w/artifacts/.get deleted file mode 100644 index 55844c9d..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/AGcyb84sQR-V3Rr7_sU2-w/artifacts/.get +++ /dev/null @@ -1,226 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-01-14T00:18:52.626Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-01-14T00:18:52.626Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-01-14T00:18:52.626Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-01-14T00:18:52.626Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-01-14T00:18:52.626Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-01-14T00:18:52.626Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-01-14T00:18:52.626Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-01-14T00:18:52.626Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-01-14T00:18:52.626Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-01-14T00:18:52.626Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-01-14T00:18:52.626Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-01-14T00:18:52.626Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-01-14T00:18:52.626Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-01-14T00:18:52.626Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-01-14T00:18:52.626Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-01-14T00:18:52.626Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-01-14T00:18:52.626Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-01-14T00:18:52.626Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-01-14T00:18:52.626Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-01-14T00:18:52.626Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-01-14T00:18:52.626Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-01-14T00:18:52.626Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-01-14T00:18:52.626Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-01-14T00:18:52.626Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-01-14T00:18:52.626Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-01-14T00:18:52.626Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-01-14T00:18:52.626Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-01-14T00:18:52.626Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-01-14T00:18:52.626Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-01-14T00:18:52.626Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-01-14T00:18:52.626Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-01-14T00:18:52.626Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-01-14T00:18:52.626Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-01-14T00:18:52.626Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-01-14T00:18:52.626Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-01-14T00:18:52.626Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-01-14T00:18:52.626Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/AGcyb84sQR-V3Rr7_sU2-w/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/AGcyb84sQR-V3Rr7_sU2-w/artifacts/public/build/target.json deleted file mode 100644 index 4a7db100..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/AGcyb84sQR-V3Rr7_sU2-w/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "buildid": "20191217001554", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "73.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "73.0a1", - "moz_pkg_platform": "linux-x86_64-tsan", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "163a815e471650550a371531a2b382eff4f4c811", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/AGcyb84sQR-V3Rr7_sU2-w/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/AGcyb84sQR-V3Rr7_sU2-w/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 73d68511..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/AGcyb84sQR-V3Rr7_sU2-w/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": false, - "datareporting": true, - "debug": false, - "devedition": false, - "early_beta_or_earlier": true, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": false, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": true, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/ANLIRz0-TYuNSKG-tKqE9A/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/ANLIRz0-TYuNSKG-tKqE9A/artifacts/.get deleted file mode 100644 index 8e946cf5..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/ANLIRz0-TYuNSKG-tKqE9A/artifacts/.get +++ /dev/null @@ -1,238 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T00:03:45.418Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/ANLIRz0-TYuNSKG-tKqE9A/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/ANLIRz0-TYuNSKG-tKqE9A/artifacts/public/build/target.json deleted file mode 100644 index 6e9efaba..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/ANLIRz0-TYuNSKG-tKqE9A/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "buildid": "20191113000048", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "linux-x86_64", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "77b18bc38fcfb26cbd1df38bc67ec840399a87e0", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/AReM_qPXSK6ZkfwSf-YTNg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/AReM_qPXSK6ZkfwSf-YTNg/artifacts/.get new file mode 100644 index 00000000..a2dc93d0 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/AReM_qPXSK6ZkfwSf-YTNg/artifacts/.get @@ -0,0 +1,238 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.codesign-entitlements.zip", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.dmg", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T13:54:31.650Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/AReM_qPXSK6ZkfwSf-YTNg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/AReM_qPXSK6ZkfwSf-YTNg/artifacts/public/build/target.json new file mode 100644 index 00000000..565521d1 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/AReM_qPXSK6ZkfwSf-YTNg/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "", + "buildid": "20200727134833", + "cc": "", + "cxx": "", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "mac", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "70426fd9a691ac3a6507d4861cb714a0fb6dc188", + "moz_update_channel": "default", + "target_alias": "x86_64-apple-darwin", + "target_cpu": "x86_64", + "target_os": "darwin", + "target_vendor": "apple" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/AReM_qPXSK6ZkfwSf-YTNg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/AReM_qPXSK6ZkfwSf-YTNg/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..cdfc4bcb --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/AReM_qPXSK6ZkfwSf-YTNg/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": true, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "debug", + "cc_type": null, + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": true, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "mac", + "pgo": false, + "platform_guess": "macosx64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "cocoa", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/AddIufIfTemwVdJbbL3FQA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/AddIufIfTemwVdJbbL3FQA/artifacts/.get deleted file mode 100644 index 6342fae9..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/AddIufIfTemwVdJbbL3FQA/artifacts/.get +++ /dev/null @@ -1,202 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-11T22:30:46.466Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-11T22:30:46.466Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-11T22:30:46.466Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-11T22:30:46.466Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-11T22:30:46.466Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-11T22:30:46.466Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-11T22:30:46.466Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-11T22:30:46.466Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-11T22:30:46.466Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.dmg", - "expires": "2020-11-11T22:30:46.466Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-11T22:30:46.466Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-11T22:30:46.466Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-11T22:30:46.466Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-11T22:30:46.466Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-11T22:30:46.466Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-11T22:30:46.466Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-11T22:30:46.466Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-11T22:30:46.466Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-11T22:30:46.466Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-11T22:30:46.466Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-11T22:30:46.466Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-11T22:30:46.466Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-11T22:30:46.466Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-11T22:30:46.466Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-11T22:30:46.466Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-11T22:30:46.466Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-11T22:30:46.466Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-11T22:30:46.466Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-11T22:30:46.466Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-11T22:30:46.466Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-11T22:30:46.466Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-11T22:30:46.466Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-11T22:30:46.466Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/AddIufIfTemwVdJbbL3FQA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/AddIufIfTemwVdJbbL3FQA/artifacts/public/build/target.json deleted file mode 100644 index 58f3366f..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/AddIufIfTemwVdJbbL3FQA/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/workspace/build/src/clang/bin/clang -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99 --target=x86_64-darwin11", - "buildid": "20191112222920", - "cc": "/builds/worker/workspace/build/src/clang/bin/clang -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99 --target=x86_64-darwin11", - "cxx": "/builds/worker/workspace/build/src/clang/bin/clang++ -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk --target=x86_64-darwin11", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "68.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "68.2.1", - "moz_pkg_platform": "mac-asan", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr68", - "moz_source_stamp": "939a3aec03d304a0a3e3b003e26965c6e95ec211", - "moz_update_channel": "default", - "target_alias": "x86_64-apple-darwin11", - "target_cpu": "x86_64", - "target_os": "darwin11", - "target_vendor": "apple" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/AddIufIfTemwVdJbbL3FQA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/AddIufIfTemwVdJbbL3FQA/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 6c56ce31..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/AddIufIfTemwVdJbbL3FQA/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": true, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": false, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": false, - "os": "mac", - "pgo": false, - "platform_guess": "macosx64-asan", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "cocoa", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/AxnNlU2LQGuD-QELMbp5Aw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/AxnNlU2LQGuD-QELMbp5Aw/artifacts/.get new file mode 100644 index 00000000..f441d397 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/AxnNlU2LQGuD-QELMbp5Aw/artifacts/.get @@ -0,0 +1,160 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T03:36:23.888Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T03:36:23.888Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T03:36:23.888Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T03:36:23.888Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/install/sea/target.installer.exe", + "expires": "2021-07-27T03:36:23.888Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T03:36:23.888Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T03:36:23.888Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/setup.exe", + "expires": "2021-07-27T03:36:23.888Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T03:36:23.888Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2021-07-27T03:36:23.888Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T03:36:23.888Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T03:36:23.888Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T03:36:23.888Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T03:36:23.888Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T03:36:23.888Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T03:36:23.888Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T03:36:23.888Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T03:36:23.888Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.zip", + "expires": "2021-07-27T03:36:23.888Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2021-07-27T03:36:23.888Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T03:36:23.888Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T03:36:23.888Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T03:36:23.888Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T03:36:23.888Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T03:36:23.888Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T03:36:23.888Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/AxnNlU2LQGuD-QELMbp5Aw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/AxnNlU2LQGuD-QELMbp5Aw/artifacts/public/build/target.json new file mode 100644 index 00000000..dd2903a0 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/AxnNlU2LQGuD-QELMbp5Aw/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/checkouts/gecko/vs2017_15.9.6/VC/bin/Hostx64/arm64/armasm64.exe", + "buildid": "20200727033000", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang-cl -Xclang -std=gnu99 --target=aarch64-windows-msvc", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang-cl -Xclang -std=c++17 --target=aarch64-windows-msvc", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "win64-aarch64", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "56082fc4acfacba40993e47ef8302993c59e264e", + "moz_update_channel": "default", + "target_alias": "aarch64-windows-mingw32", + "target_cpu": "aarch64", + "target_os": "mingw32", + "target_vendor": "windows" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/AxnNlU2LQGuD-QELMbp5Aw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/AxnNlU2LQGuD-QELMbp5Aw/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..eb559a4c --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/AxnNlU2LQGuD-QELMbp5Aw/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": ".exe", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "debug", + "cc_type": "clang-cl", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": true, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "win", + "pgo": false, + "platform_guess": "win64", + "processor": "aarch64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "windows", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/BIvkFPceTl2nkO6ClIjvrw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/BIvkFPceTl2nkO6ClIjvrw/artifacts/.get deleted file mode 100644 index d7b36605..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/BIvkFPceTl2nkO6ClIjvrw/artifacts/.get +++ /dev/null @@ -1,238 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T09:57:05.243Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/BIvkFPceTl2nkO6ClIjvrw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/BIvkFPceTl2nkO6ClIjvrw/artifacts/public/build/target.json deleted file mode 100644 index 9aca4a75..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/BIvkFPceTl2nkO6ClIjvrw/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 -m32", - "buildid": "20191113095525", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 -m32", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -m32", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "linux-i686", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "2f19e7b646e0a52fa855b75c868f0a3f3a990ad3", - "moz_update_channel": "default", - "target_alias": "i686-pc-linux-gnu", - "target_cpu": "i686", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/BIvkFPceTl2nkO6ClIjvrw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/BIvkFPceTl2nkO6ClIjvrw/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 811dd91a..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/BIvkFPceTl2nkO6ClIjvrw/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 32, - "buildapp": "browser", - "buildtype_guess": "debug", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "linux", - "pgo": false, - "platform_guess": "linux", - "processor": "x86", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/BPkH_TmtRYSDE7ZzXuai0A/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/BPkH_TmtRYSDE7ZzXuai0A/artifacts/.get new file mode 100644 index 00000000..d59bb5e4 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/BPkH_TmtRYSDE7ZzXuai0A/artifacts/.get @@ -0,0 +1,238 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-11-06T02:31:50.813Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/BPkH_TmtRYSDE7ZzXuai0A/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/BPkH_TmtRYSDE7ZzXuai0A/artifacts/public/build/target.json new file mode 100644 index 00000000..d472d459 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/BPkH_TmtRYSDE7ZzXuai0A/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "buildid": "20191107015224", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "72.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "72.0a1", + "moz_pkg_platform": "linux-x86_64", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "e8b7c48d4e7ed1b63aeedff379b51e566ea499d9", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/ANLIRz0-TYuNSKG-tKqE9A/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/BPkH_TmtRYSDE7ZzXuai0A/artifacts/public/build/target.mozinfo.json similarity index 100% rename from tests/mock-firefoxci/api/queue/v1/task/ANLIRz0-TYuNSKG-tKqE9A/artifacts/public/build/target.mozinfo.json rename to tests/mock-firefoxci/api/queue/v1/task/BPkH_TmtRYSDE7ZzXuai0A/artifacts/public/build/target.mozinfo.json diff --git a/tests/mock-firefoxci/api/queue/v1/task/BRDoq05RR9S48onZ55GiIQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/BRDoq05RR9S48onZ55GiIQ/artifacts/.get deleted file mode 100644 index c878e8b2..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/BRDoq05RR9S48onZ55GiIQ/artifacts/.get +++ /dev/null @@ -1,316 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/geckoview-androidTest.apk", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/geckoview_example.apk", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113000048/geckoview-default-armeabi-v7a-72.0.20191113000048-javadoc.jar", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113000048/geckoview-default-armeabi-v7a-72.0.20191113000048-javadoc.jar.md5", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113000048/geckoview-default-armeabi-v7a-72.0.20191113000048-javadoc.jar.sha1", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113000048/geckoview-default-armeabi-v7a-72.0.20191113000048-sources.jar", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113000048/geckoview-default-armeabi-v7a-72.0.20191113000048-sources.jar.md5", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113000048/geckoview-default-armeabi-v7a-72.0.20191113000048-sources.jar.sha1", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113000048/geckoview-default-armeabi-v7a-72.0.20191113000048.aar", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113000048/geckoview-default-armeabi-v7a-72.0.20191113000048.aar.md5", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113000048/geckoview-default-armeabi-v7a-72.0.20191113000048.aar.sha1", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113000048/geckoview-default-armeabi-v7a-72.0.20191113000048.pom", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113000048/geckoview-default-armeabi-v7a-72.0.20191113000048.pom.md5", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113000048/geckoview-default-armeabi-v7a-72.0.20191113000048.pom.sha1", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/xml" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml.md5", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml.sha1", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T00:03:45.388Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/BRDoq05RR9S48onZ55GiIQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/BRDoq05RR9S48onZ55GiIQ/artifacts/public/build/target.json deleted file mode 100644 index ce16ad4a..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/BRDoq05RR9S48onZ55GiIQ/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=arm-linux-androideabi", - "buildid": "20191113000048", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=arm-linux-androideabi", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ --target=arm-linux-androideabi", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "fennec", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "android-arm", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "77b18bc38fcfb26cbd1df38bc67ec840399a87e0", - "moz_update_channel": "default", - "target_alias": "arm-unknown-linux-androideabi", - "target_cpu": "arm", - "target_os": "linux-androideabi", - "target_vendor": "unknown" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/BRDoq05RR9S48onZ55GiIQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/BRDoq05RR9S48onZ55GiIQ/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 7cf3aa44..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/BRDoq05RR9S48onZ55GiIQ/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "allow_legacy_extensions": true, - "android_min_sdk": "16", - "appname": "fennec", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 32, - "buildapp": "mobile/android", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": false, - "official": true, - "os": "android", - "pgo": false, - "platform_guess": "android-arm", - "processor": "arm", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": false, - "telemetry": false, - "tests_enabled": true, - "toolkit": "android", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/BY9xme57QG2Op4lj7-DpuQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/BY9xme57QG2Op4lj7-DpuQ/artifacts/.get deleted file mode 100644 index f6f98908..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/BY9xme57QG2Op4lj7-DpuQ/artifacts/.get +++ /dev/null @@ -1,244 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/chrome-map.json", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.code-coverage-gcno.zip", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T09:57:03.716Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/BY9xme57QG2Op4lj7-DpuQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/BY9xme57QG2Op4lj7-DpuQ/artifacts/public/build/target.json deleted file mode 100644 index 93b30626..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/BY9xme57QG2Op4lj7-DpuQ/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/gcc/bin/gcc -std=gnu99", - "buildid": "20191113095525", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/gcc/bin/gcc -std=gnu99", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/gcc/bin/g++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "linux-x86_64", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "2f19e7b646e0a52fa855b75c868f0a3f3a990ad3", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/BY9xme57QG2Op4lj7-DpuQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/BY9xme57QG2Op4lj7-DpuQ/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index cdb6e35a..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/BY9xme57QG2Op4lj7-DpuQ/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "gcc", - "ccov": true, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/BffyZU2RQ9qqA_K_7FWq5w/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/BffyZU2RQ9qqA_K_7FWq5w/artifacts/.get new file mode 100644 index 00000000..2b760fa8 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/BffyZU2RQ9qqA_K_7FWq5w/artifacts/.get @@ -0,0 +1,334 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/geckoview-androidTest.apk", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/geckoview_example.apk", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727095125/geckoview-default-x86_64-80.0.20200727095125.aar", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727095125/geckoview-default-x86_64-80.0.20200727095125.aar.md5", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727095125/geckoview-default-x86_64-80.0.20200727095125.aar.sha1", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727095125/geckoview-default-x86_64-80.0.20200727095125-javadoc.jar", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727095125/geckoview-default-x86_64-80.0.20200727095125-javadoc.jar.md5", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727095125/geckoview-default-x86_64-80.0.20200727095125-javadoc.jar.sha1", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727095125/geckoview-default-x86_64-80.0.20200727095125.pom", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727095125/geckoview-default-x86_64-80.0.20200727095125.pom.md5", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727095125/geckoview-default-x86_64-80.0.20200727095125.pom.sha1", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727095125/geckoview-default-x86_64-80.0.20200727095125-sources.jar", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727095125/geckoview-default-x86_64-80.0.20200727095125-sources.jar.md5", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727095125/geckoview-default-x86_64-80.0.20200727095125-sources.jar.sha1", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/maven-metadata.xml", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/xml" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/maven-metadata.xml.md5", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/maven-metadata.xml.sha1", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T09:55:01.080Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/BffyZU2RQ9qqA_K_7FWq5w/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/BffyZU2RQ9qqA_K_7FWq5w/artifacts/public/build/target.json new file mode 100644 index 00000000..3c9f7855 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/BffyZU2RQ9qqA_K_7FWq5w/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=x86_64-linux-android", + "buildid": "20200727095125", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=x86_64-linux-android", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17 --target=x86_64-linux-android", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "fennec", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "android-x86_64", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "798bdad605b985a71cd204a56bb816dea503d432", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-android", + "target_cpu": "x86_64", + "target_os": "linux-android", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/BffyZU2RQ9qqA_K_7FWq5w/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/BffyZU2RQ9qqA_K_7FWq5w/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..a9f35ccd --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/BffyZU2RQ9qqA_K_7FWq5w/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,37 @@ +{ + "android_min_sdk": "21", + "appname": "fennec", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "mobile/android", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": false, + "official": true, + "os": "android", + "pgo": false, + "platform_guess": "android-x86_64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": false, + "telemetry": false, + "tests_enabled": true, + "toolkit": "android", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": false +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/BsyfuvkZQyWYYDB8zfcxFQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/BsyfuvkZQyWYYDB8zfcxFQ/artifacts/.get new file mode 100644 index 00000000..236e886f --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/BsyfuvkZQyWYYDB8zfcxFQ/artifacts/.get @@ -0,0 +1,262 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.normandy.json", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T00:40:19.258Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/BsyfuvkZQyWYYDB8zfcxFQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/BsyfuvkZQyWYYDB8zfcxFQ/artifacts/public/build/target.json new file mode 100644 index 00000000..9ac2592d --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/BsyfuvkZQyWYYDB8zfcxFQ/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "buildid": "20200727003535", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-x86_64", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "795f8a67fda8045af868f73d74d11b70b874db61", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/BsyfuvkZQyWYYDB8zfcxFQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/BsyfuvkZQyWYYDB8zfcxFQ/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..d3c93a6a --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/BsyfuvkZQyWYYDB8zfcxFQ/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "linux", + "pgo": false, + "platform_guess": "linux64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/BzdZklE_QVSZ8iZXQtyYsw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/BzdZklE_QVSZ8iZXQtyYsw/artifacts/.get new file mode 100644 index 00000000..0622b18a --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/BzdZklE_QVSZ8iZXQtyYsw/artifacts/.get @@ -0,0 +1,160 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T02:50:54.661Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T02:50:54.661Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T02:50:54.661Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T02:50:54.661Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2020-08-24T02:50:54.661Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2020-08-24T02:50:54.661Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T02:50:54.661Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T02:50:54.661Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T02:50:54.661Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2020-08-24T02:50:54.661Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2020-08-24T02:50:54.661Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-24T02:50:54.661Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T02:50:54.661Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T02:50:54.661Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T02:50:54.661Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2020-08-24T02:50:54.661Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T02:50:54.661Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2020-08-24T02:50:54.661Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T02:50:54.661Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2020-08-24T02:50:54.661Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T02:50:54.661Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T02:50:54.661Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T02:50:54.661Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T02:50:54.661Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T02:50:54.661Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T02:50:54.661Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/BzdZklE_QVSZ8iZXQtyYsw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/BzdZklE_QVSZ8iZXQtyYsw/artifacts/public/build/target.json new file mode 100644 index 00000000..b3f245c9 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/BzdZklE_QVSZ8iZXQtyYsw/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 -m32", + "buildid": "20200727024623", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 -m32", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17 -m32", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-i686", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "321902edb883e7a37efc6b686da6f20894c72f21", + "moz_update_channel": "default", + "target_alias": "i686-pc-linux-gnu", + "target_cpu": "i686", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/BzdZklE_QVSZ8iZXQtyYsw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/BzdZklE_QVSZ8iZXQtyYsw/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..8796b52c --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/BzdZklE_QVSZ8iZXQtyYsw/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 32, + "buildapp": "browser", + "buildtype_guess": "debug", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": true, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "linux", + "pgo": false, + "platform_guess": "linux", + "processor": "x86", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Bzdv9e_ESXKvGN56YbtinQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/Bzdv9e_ESXKvGN56YbtinQ/artifacts/.get deleted file mode 100644 index 05010584..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Bzdv9e_ESXKvGN56YbtinQ/artifacts/.get +++ /dev/null @@ -1,250 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "text/html; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar.exe", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff.exe", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/install/sea/target.installer.exe", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/setup.exe", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.zip", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T00:03:46.720Z", - "contentType": "application/octet-stream" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Bzdv9e_ESXKvGN56YbtinQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/Bzdv9e_ESXKvGN56YbtinQ/artifacts/public/build/target.json deleted file mode 100644 index 2354f1fa..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Bzdv9e_ESXKvGN56YbtinQ/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "z:/build/build/src/vs2017_15.8.4/VC/bin/HostX64/x64/ml64.exe", - "buildid": "20191113000048", - "cc": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe -Xclang -std=gnu99", - "cxx": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe", - "host_alias": "x86_64-pc-mingw32", - "host_cpu": "x86_64", - "host_os": "mingw32", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "win64", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "77b18bc38fcfb26cbd1df38bc67ec840399a87e0", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-mingw32", - "target_cpu": "x86_64", - "target_os": "mingw32", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/Bzdv9e_ESXKvGN56YbtinQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/Bzdv9e_ESXKvGN56YbtinQ/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index b0c7e878..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Bzdv9e_ESXKvGN56YbtinQ/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": ".exe", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "cc_type": "clang-cl", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "z:/build/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "win", - "pgo": false, - "platform_guess": "win64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "windows", - "topsrcdir": "z:/build/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/CQHN-TC9SfOx4lsuks4AmA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/CQHN-TC9SfOx4lsuks4AmA/artifacts/.get deleted file mode 100644 index f6baab5f..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/CQHN-TC9SfOx4lsuks4AmA/artifacts/.get +++ /dev/null @@ -1,238 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T14:02:38.670Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/CQHN-TC9SfOx4lsuks4AmA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/CQHN-TC9SfOx4lsuks4AmA/artifacts/public/build/target.json deleted file mode 100644 index a55623a9..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/CQHN-TC9SfOx4lsuks4AmA/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 -m32", - "buildid": "20191113135937", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 -m32", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -m32", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "linux-i686", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "ee42d2b391ce5ff5360e55adb0ac347514914d35", - "moz_update_channel": "default", - "target_alias": "i686-pc-linux-gnu", - "target_cpu": "i686", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/CQHN-TC9SfOx4lsuks4AmA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/CQHN-TC9SfOx4lsuks4AmA/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 811dd91a..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/CQHN-TC9SfOx4lsuks4AmA/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 32, - "buildapp": "browser", - "buildtype_guess": "debug", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "linux", - "pgo": false, - "platform_guess": "linux", - "processor": "x86", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/CVKwRWoATf6hp76VuVgNOQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/CVKwRWoATf6hp76VuVgNOQ/artifacts/.get new file mode 100644 index 00000000..338b7f3a --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/CVKwRWoATf6hp76VuVgNOQ/artifacts/.get @@ -0,0 +1,256 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/install/sea/target.installer.exe", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/setup.exe", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.zip", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T09:55:01.708Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/CVKwRWoATf6hp76VuVgNOQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/CVKwRWoATf6hp76VuVgNOQ/artifacts/public/build/target.json new file mode 100644 index 00000000..d360feee --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/CVKwRWoATf6hp76VuVgNOQ/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/checkouts/gecko/vs2017_15.8.4/VC/bin/Hostx64/x64/ml64.exe", + "buildid": "20200727095125", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang-cl -Xclang -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang-cl -Xclang -std=c++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "win64", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "798bdad605b985a71cd204a56bb816dea503d432", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-mingw32", + "target_cpu": "x86_64", + "target_os": "mingw32", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/CVKwRWoATf6hp76VuVgNOQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/CVKwRWoATf6hp76VuVgNOQ/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..cb1a38fa --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/CVKwRWoATf6hp76VuVgNOQ/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": ".exe", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "debug", + "cc_type": "clang-cl", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": true, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "win", + "pgo": false, + "platform_guess": "win64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "windows", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/CWZKML8CQTKGfKEydUTJpg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/CWZKML8CQTKGfKEydUTJpg/artifacts/.get new file mode 100644 index 00000000..58793322 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/CWZKML8CQTKGfKEydUTJpg/artifacts/.get @@ -0,0 +1,154 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T09:55:01.073Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T09:55:01.073Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T09:55:01.073Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T09:55:01.073Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2021-07-27T09:55:01.073Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2021-07-27T09:55:01.073Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T09:55:01.073Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T09:55:01.073Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T09:55:01.073Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.codesign-entitlements.zip", + "expires": "2021-07-27T09:55:01.073Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.dmg", + "expires": "2021-07-27T09:55:01.073Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T09:55:01.073Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T09:55:01.073Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T09:55:01.073Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T09:55:01.073Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T09:55:01.073Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T09:55:01.073Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T09:55:01.073Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2021-07-27T09:55:01.073Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T09:55:01.073Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T09:55:01.073Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T09:55:01.073Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T09:55:01.073Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T09:55:01.073Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T09:55:01.073Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/CWZKML8CQTKGfKEydUTJpg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/CWZKML8CQTKGfKEydUTJpg/artifacts/public/build/target.json new file mode 100644 index 00000000..65654410 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/CWZKML8CQTKGfKEydUTJpg/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/checkouts/gecko/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", + "buildid": "20200727095125", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/checkouts/gecko/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -isysroot /builds/worker/checkouts/gecko/MacOSX10.11.sdk -std=gnu++17 --target=x86_64-apple-darwin", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "mac-asan", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "798bdad605b985a71cd204a56bb816dea503d432", + "moz_update_channel": "default", + "target_alias": "x86_64-apple-darwin", + "target_cpu": "x86_64", + "target_os": "darwin", + "target_vendor": "apple" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/CWZKML8CQTKGfKEydUTJpg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/CWZKML8CQTKGfKEydUTJpg/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..02ffb7a8 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/CWZKML8CQTKGfKEydUTJpg/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": true, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": false, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": false, + "os": "mac", + "pgo": false, + "platform_guess": "macosx64-asan", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "cocoa", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Ccy2nP5BQ1mF2ot1mMv24A/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/Ccy2nP5BQ1mF2ot1mMv24A/artifacts/.get new file mode 100644 index 00000000..e46d208b --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/Ccy2nP5BQ1mF2ot1mMv24A/artifacts/.get @@ -0,0 +1,172 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T03:36:23.219Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T03:36:23.219Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T03:36:23.219Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/chrome-map.json", + "expires": "2021-07-27T03:36:23.219Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T03:36:23.219Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2021-07-27T03:36:23.219Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2021-07-27T03:36:23.219Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T03:36:23.219Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T03:36:23.219Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T03:36:23.219Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.code-coverage-gcno.zip", + "expires": "2021-07-27T03:36:23.219Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T03:36:23.219Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T03:36:23.219Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T03:36:23.219Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T03:36:23.219Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T03:36:23.219Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T03:36:23.219Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T03:36:23.219Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.normandy.json", + "expires": "2021-07-27T03:36:23.219Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2021-07-27T03:36:23.219Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T03:36:23.219Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2021-07-27T03:36:23.219Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T03:36:23.219Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T03:36:23.219Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T03:36:23.219Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T03:36:23.219Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T03:36:23.219Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T03:36:23.219Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Ccy2nP5BQ1mF2ot1mMv24A/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/Ccy2nP5BQ1mF2ot1mMv24A/artifacts/public/build/target.json new file mode 100644 index 00000000..b10aeb5c --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/Ccy2nP5BQ1mF2ot1mMv24A/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/gcc/bin/gcc -std=gnu99", + "buildid": "20200727033000", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/gcc/bin/gcc -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/gcc/bin/g++ -std=gnu++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-x86_64", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "56082fc4acfacba40993e47ef8302993c59e264e", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/Ccy2nP5BQ1mF2ot1mMv24A/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/Ccy2nP5BQ1mF2ot1mMv24A/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..5ab7bd5c --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/Ccy2nP5BQ1mF2ot1mMv24A/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "gcc", + "ccov": true, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "linux", + "pgo": false, + "platform_guess": "linux64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/CfvHSHMeStuG85XCg76VRA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/CfvHSHMeStuG85XCg76VRA/artifacts/.get deleted file mode 100644 index 557ea525..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/CfvHSHMeStuG85XCg76VRA/artifacts/.get +++ /dev/null @@ -1,238 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T04:51:50.231Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/CfvHSHMeStuG85XCg76VRA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/CfvHSHMeStuG85XCg76VRA/artifacts/public/build/target.json deleted file mode 100644 index c0106c2e..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/CfvHSHMeStuG85XCg76VRA/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "buildid": "20191113044959", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "linux-x86_64", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "48a708577712a2eb1b19aafcda25b2aa0e607629", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/CfvHSHMeStuG85XCg76VRA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/CfvHSHMeStuG85XCg76VRA/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 51718130..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/CfvHSHMeStuG85XCg76VRA/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/DAnaZ6M8RBadrL31RedSmA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/DAnaZ6M8RBadrL31RedSmA/artifacts/.get new file mode 100644 index 00000000..1969c0b9 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/DAnaZ6M8RBadrL31RedSmA/artifacts/.get @@ -0,0 +1,328 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/geckoview-androidTest.apk", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/geckoview_example.apk", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727033000/geckoview-default-arm64-v8a-80.0.20200727033000.aar", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727033000/geckoview-default-arm64-v8a-80.0.20200727033000.aar.md5", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727033000/geckoview-default-arm64-v8a-80.0.20200727033000.aar.sha1", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727033000/geckoview-default-arm64-v8a-80.0.20200727033000-javadoc.jar", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727033000/geckoview-default-arm64-v8a-80.0.20200727033000-javadoc.jar.md5", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727033000/geckoview-default-arm64-v8a-80.0.20200727033000-javadoc.jar.sha1", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727033000/geckoview-default-arm64-v8a-80.0.20200727033000.pom", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727033000/geckoview-default-arm64-v8a-80.0.20200727033000.pom.md5", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727033000/geckoview-default-arm64-v8a-80.0.20200727033000.pom.sha1", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727033000/geckoview-default-arm64-v8a-80.0.20200727033000-sources.jar", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727033000/geckoview-default-arm64-v8a-80.0.20200727033000-sources.jar.md5", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727033000/geckoview-default-arm64-v8a-80.0.20200727033000-sources.jar.sha1", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/maven-metadata.xml", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/xml" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/maven-metadata.xml.md5", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/maven-metadata.xml.sha1", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T03:36:23.650Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/DAnaZ6M8RBadrL31RedSmA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/DAnaZ6M8RBadrL31RedSmA/artifacts/public/build/target.json new file mode 100644 index 00000000..d1727f17 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/DAnaZ6M8RBadrL31RedSmA/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=aarch64-linux-android", + "buildid": "20200727033000", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=aarch64-linux-android", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17 --target=aarch64-linux-android", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "fennec", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "android-aarch64", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "56082fc4acfacba40993e47ef8302993c59e264e", + "moz_update_channel": "default", + "target_alias": "aarch64-unknown-linux-android", + "target_cpu": "aarch64", + "target_os": "linux-android", + "target_vendor": "unknown" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/DAnaZ6M8RBadrL31RedSmA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/DAnaZ6M8RBadrL31RedSmA/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..c61f924e --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/DAnaZ6M8RBadrL31RedSmA/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,37 @@ +{ + "android_min_sdk": "21", + "appname": "fennec", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "mobile/android", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": false, + "official": true, + "os": "android", + "pgo": false, + "platform_guess": "android-aarch64", + "processor": "aarch64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": false, + "telemetry": false, + "tests_enabled": true, + "toolkit": "android", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": false +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/DHuBk21wSCqA0WbjjnTVwg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/DHuBk21wSCqA0WbjjnTVwg/artifacts/.get deleted file mode 100644 index 3a864527..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/DHuBk21wSCqA0WbjjnTVwg/artifacts/.get +++ /dev/null @@ -1,226 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-12-16T16:19:57.120Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-12-16T16:19:57.120Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-12-16T16:19:57.120Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-12-16T16:19:57.120Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-12-16T16:19:57.120Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-12-16T16:19:57.120Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-12-16T16:19:57.120Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-12-16T16:19:57.120Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-12-16T16:19:57.120Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-12-16T16:19:57.120Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-12-16T16:19:57.120Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-12-16T16:19:57.120Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-12-16T16:19:57.120Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-12-16T16:19:57.120Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-12-16T16:19:57.120Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-12-16T16:19:57.120Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-12-16T16:19:57.120Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-12-16T16:19:57.120Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-12-16T16:19:57.120Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-12-16T16:19:57.120Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-12-16T16:19:57.120Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-12-16T16:19:57.120Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-12-16T16:19:57.120Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-12-16T16:19:57.120Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-12-16T16:19:57.120Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-12-16T16:19:57.120Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-12-16T16:19:57.120Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-12-16T16:19:57.120Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-12-16T16:19:57.120Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-12-16T16:19:57.120Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-12-16T16:19:57.120Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-12-16T16:19:57.120Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-12-16T16:19:57.120Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-12-16T16:19:57.120Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-12-16T16:19:57.120Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-12-16T16:19:57.120Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-12-16T16:19:57.120Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/DHuBk21wSCqA0WbjjnTVwg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/DHuBk21wSCqA0WbjjnTVwg/artifacts/public/build/target.json deleted file mode 100644 index c3685ad0..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/DHuBk21wSCqA0WbjjnTVwg/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "buildid": "20191217161753", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "73.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "73.0a1", - "moz_pkg_platform": "linux-x86_64-tsan", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "930ad6def3c7961c82b2af20b66be3351603684f", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/DHuBk21wSCqA0WbjjnTVwg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/DHuBk21wSCqA0WbjjnTVwg/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 73d68511..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/DHuBk21wSCqA0WbjjnTVwg/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": false, - "datareporting": true, - "debug": false, - "devedition": false, - "early_beta_or_earlier": true, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": false, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": true, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/DWRN2AIISlylhB6e35I6jQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/DWRN2AIISlylhB6e35I6jQ/artifacts/.get new file mode 100644 index 00000000..6b5a5888 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/DWRN2AIISlylhB6e35I6jQ/artifacts/.get @@ -0,0 +1,250 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.normandy.json", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T09:55:01.060Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/DWRN2AIISlylhB6e35I6jQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/DWRN2AIISlylhB6e35I6jQ/artifacts/public/build/target.json new file mode 100644 index 00000000..78e23d06 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/DWRN2AIISlylhB6e35I6jQ/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "buildid": "20200727095125", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-x86_64-asan", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "798bdad605b985a71cd204a56bb816dea503d432", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/DWRN2AIISlylhB6e35I6jQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/DWRN2AIISlylhB6e35I6jQ/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..e84f4330 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/DWRN2AIISlylhB6e35I6jQ/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": true, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": false, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": false, + "os": "linux", + "pgo": false, + "platform_guess": "linux64-asan", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": true, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/DeySg6H0QuWx736FmX7wFA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/DeySg6H0QuWx736FmX7wFA/artifacts/.get new file mode 100644 index 00000000..6777128f --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/DeySg6H0QuWx736FmX7wFA/artifacts/.get @@ -0,0 +1,328 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/geckoview-androidTest.apk", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/geckoview_example.apk", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727095125/geckoview-default-armeabi-v7a-80.0.20200727095125.aar", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727095125/geckoview-default-armeabi-v7a-80.0.20200727095125.aar.md5", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727095125/geckoview-default-armeabi-v7a-80.0.20200727095125.aar.sha1", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727095125/geckoview-default-armeabi-v7a-80.0.20200727095125-javadoc.jar", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727095125/geckoview-default-armeabi-v7a-80.0.20200727095125-javadoc.jar.md5", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727095125/geckoview-default-armeabi-v7a-80.0.20200727095125-javadoc.jar.sha1", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727095125/geckoview-default-armeabi-v7a-80.0.20200727095125.pom", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727095125/geckoview-default-armeabi-v7a-80.0.20200727095125.pom.md5", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727095125/geckoview-default-armeabi-v7a-80.0.20200727095125.pom.sha1", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727095125/geckoview-default-armeabi-v7a-80.0.20200727095125-sources.jar", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727095125/geckoview-default-armeabi-v7a-80.0.20200727095125-sources.jar.md5", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727095125/geckoview-default-armeabi-v7a-80.0.20200727095125-sources.jar.sha1", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/xml" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml.md5", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml.sha1", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T09:55:01.084Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/DeySg6H0QuWx736FmX7wFA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/DeySg6H0QuWx736FmX7wFA/artifacts/public/build/target.json new file mode 100644 index 00000000..ac31b50e --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/DeySg6H0QuWx736FmX7wFA/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=arm-linux-androideabi", + "buildid": "20200727095125", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=arm-linux-androideabi", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17 --target=arm-linux-androideabi", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "fennec", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "android-arm", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "798bdad605b985a71cd204a56bb816dea503d432", + "moz_update_channel": "default", + "target_alias": "arm-unknown-linux-androideabi", + "target_cpu": "arm", + "target_os": "linux-androideabi", + "target_vendor": "unknown" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/DeySg6H0QuWx736FmX7wFA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/DeySg6H0QuWx736FmX7wFA/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..3ba13582 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/DeySg6H0QuWx736FmX7wFA/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,37 @@ +{ + "android_min_sdk": "16", + "appname": "fennec", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 32, + "buildapp": "mobile/android", + "buildtype_guess": "debug", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": true, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": false, + "official": true, + "os": "android", + "pgo": false, + "platform_guess": "android-arm", + "processor": "arm", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": false, + "telemetry": false, + "tests_enabled": true, + "toolkit": "android", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": false +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Dtt4xKEbSWaLo4cPGGPpfg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/Dtt4xKEbSWaLo4cPGGPpfg/artifacts/.get deleted file mode 100644 index 95019023..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Dtt4xKEbSWaLo4cPGGPpfg/artifacts/.get +++ /dev/null @@ -1,226 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T09:57:05.849Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T09:57:05.849Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T09:57:05.849Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T09:57:05.849Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T09:57:05.849Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-12T09:57:05.849Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T09:57:05.849Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T09:57:05.849Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T09:57:05.849Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T09:57:05.849Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T09:57:05.849Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T09:57:05.849Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T09:57:05.849Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T09:57:05.849Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-12T09:57:05.849Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T09:57:05.849Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T09:57:05.849Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-12T09:57:05.849Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T09:57:05.849Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T09:57:05.849Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T09:57:05.849Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T09:57:05.849Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T09:57:05.849Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-11-12T09:57:05.849Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T09:57:05.849Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T09:57:05.849Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T09:57:05.849Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T09:57:05.849Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T09:57:05.849Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T09:57:05.849Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-11-12T09:57:05.849Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T09:57:05.849Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T09:57:05.849Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T09:57:05.849Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T09:57:05.849Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T09:57:05.849Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T09:57:05.849Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Dtt4xKEbSWaLo4cPGGPpfg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/Dtt4xKEbSWaLo4cPGGPpfg/artifacts/public/build/target.json deleted file mode 100644 index 10df5076..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Dtt4xKEbSWaLo4cPGGPpfg/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "buildid": "20191113095525", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "linux-x86_64-asan", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "2f19e7b646e0a52fa855b75c868f0a3f3a990ad3", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/Dtt4xKEbSWaLo4cPGGPpfg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/Dtt4xKEbSWaLo4cPGGPpfg/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 3162c70d..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Dtt4xKEbSWaLo4cPGGPpfg/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": true, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": false, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": false, - "os": "linux", - "pgo": false, - "platform_guess": "linux64-asan", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": true, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/DxKGdJljQhCBGAk6kDeT3w/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/DxKGdJljQhCBGAk6kDeT3w/artifacts/.get deleted file mode 100644 index 347f4b36..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/DxKGdJljQhCBGAk6kDeT3w/artifacts/.get +++ /dev/null @@ -1,250 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "text/html; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar.exe", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff.exe", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/install/sea/target.installer.exe", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/setup.exe", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.zip", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T04:51:48.622Z", - "contentType": "application/octet-stream" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/DxKGdJljQhCBGAk6kDeT3w/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/DxKGdJljQhCBGAk6kDeT3w/artifacts/public/build/target.json deleted file mode 100644 index a0a220d2..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/DxKGdJljQhCBGAk6kDeT3w/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "z:/build/build/src/vs2017_15.9.6/VC/bin/HostX64/arm64/armasm64.exe", - "buildid": "20191113044959", - "cc": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe -Xclang -std=gnu99 --target=aarch64-windows-msvc", - "cxx": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe --target=aarch64-windows-msvc", - "host_alias": "x86_64-pc-mingw32", - "host_cpu": "x86_64", - "host_os": "mingw32", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "win64", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "48a708577712a2eb1b19aafcda25b2aa0e607629", - "moz_update_channel": "default", - "target_alias": "aarch64-windows-mingw32", - "target_cpu": "aarch64", - "target_os": "mingw32", - "target_vendor": "windows" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/DxKGdJljQhCBGAk6kDeT3w/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/DxKGdJljQhCBGAk6kDeT3w/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index ef64d76d..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/DxKGdJljQhCBGAk6kDeT3w/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": ".exe", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "cc_type": "clang-cl", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "z:/build/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "win", - "pgo": false, - "platform_guess": "win64", - "processor": "aarch64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "windows", - "topsrcdir": "z:/build/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/DxTCL8g7TUmGlrChQ4fFhQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/DxTCL8g7TUmGlrChQ4fFhQ/artifacts/.get deleted file mode 100644 index ad3fcc75..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/DxTCL8g7TUmGlrChQ4fFhQ/artifacts/.get +++ /dev/null @@ -1,226 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-11T22:30:47.223Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-11T22:30:47.223Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar.exe", - "expires": "2020-11-11T22:30:47.223Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff.exe", - "expires": "2020-11-11T22:30:47.223Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/install/sea/target.installer.exe", - "expires": "2020-11-11T22:30:47.223Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-11T22:30:47.223Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/setup.exe", - "expires": "2020-11-11T22:30:47.223Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-11T22:30:47.223Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-11T22:30:47.223Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-11T22:30:47.223Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-11T22:30:47.223Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-11T22:30:47.223Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-11T22:30:47.223Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-11T22:30:47.223Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-11T22:30:47.223Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-11T22:30:47.223Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-11T22:30:47.223Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-11T22:30:47.223Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-11T22:30:47.223Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-11T22:30:47.223Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-11T22:30:47.223Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-11T22:30:47.223Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-11T22:30:47.223Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-11T22:30:47.223Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-11T22:30:47.223Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-11T22:30:47.223Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-11T22:30:47.223Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-11T22:30:47.223Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.zip", - "expires": "2020-11-11T22:30:47.223Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-11T22:30:47.223Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-11T22:30:47.223Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-11T22:30:47.223Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-11T22:30:47.223Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-11T22:30:47.223Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-11T22:30:47.223Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-11T22:30:47.223Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-11T22:30:47.223Z", - "contentType": "application/octet-stream" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/DxTCL8g7TUmGlrChQ4fFhQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/DxTCL8g7TUmGlrChQ4fFhQ/artifacts/public/build/target.json deleted file mode 100644 index 2512780c..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/DxTCL8g7TUmGlrChQ4fFhQ/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "z:/build/build/src/vs2017_15.8.4/VC/bin/HostX64/x64/ml64.exe", - "buildid": "20191112222920", - "cc": "z:/build/build/src/clang/bin/clang-cl.exe -Xclang -std=gnu99", - "cxx": "z:/build/build/src/clang/bin/clang-cl.exe", - "host_alias": "x86_64-pc-mingw32", - "host_cpu": "x86_64", - "host_os": "mingw32", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "68.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "68.2.1", - "moz_pkg_platform": "win64", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr68", - "moz_source_stamp": "939a3aec03d304a0a3e3b003e26965c6e95ec211", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-mingw32", - "target_cpu": "x86_64", - "target_os": "mingw32", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/DxTCL8g7TUmGlrChQ4fFhQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/DxTCL8g7TUmGlrChQ4fFhQ/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 64451e50..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/DxTCL8g7TUmGlrChQ4fFhQ/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": ".exe", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "cc_type": "clang-cl", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "z:/build/build/src/.mozconfig", - "nightly_build": false, - "official": true, - "os": "win", - "pgo": false, - "platform_guess": "win64", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "windows", - "topsrcdir": "z:/build/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/DyNnPmHlSIaDdax0IUl_bg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/DyNnPmHlSIaDdax0IUl_bg/artifacts/.get deleted file mode 100644 index c3284220..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/DyNnPmHlSIaDdax0IUl_bg/artifacts/.get +++ /dev/null @@ -1,214 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T09:57:06.939Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T09:57:06.939Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T09:57:06.939Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T09:57:06.939Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T09:57:06.939Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-12T09:57:06.939Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T09:57:06.939Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T09:57:06.939Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T09:57:06.939Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T09:57:06.939Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T09:57:06.939Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T09:57:06.939Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T09:57:06.939Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-12T09:57:06.939Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T09:57:06.939Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T09:57:06.939Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T09:57:06.939Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T09:57:06.939Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-12T09:57:06.939Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T09:57:06.939Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T09:57:06.939Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T09:57:06.939Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T09:57:06.939Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T09:57:06.939Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-11-12T09:57:06.939Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T09:57:06.939Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T09:57:06.939Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T09:57:06.939Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T09:57:06.939Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T09:57:06.939Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T09:57:06.939Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-11-12T09:57:06.939Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T09:57:06.939Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T09:57:06.939Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T09:57:06.939Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/DyNnPmHlSIaDdax0IUl_bg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/DyNnPmHlSIaDdax0IUl_bg/artifacts/public/build/target.json deleted file mode 100644 index 94bf7714..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/DyNnPmHlSIaDdax0IUl_bg/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "buildid": "20191113095525", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "linux-x86_64", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "2f19e7b646e0a52fa855b75c868f0a3f3a990ad3", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/DyNnPmHlSIaDdax0IUl_bg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/DyNnPmHlSIaDdax0IUl_bg/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 51718130..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/DyNnPmHlSIaDdax0IUl_bg/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/E1p0LzmBSQqukKd0yhrAjw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/E1p0LzmBSQqukKd0yhrAjw/artifacts/.get deleted file mode 100644 index 24d305a4..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/E1p0LzmBSQqukKd0yhrAjw/artifacts/.get +++ /dev/null @@ -1,226 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.zip", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.zip", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.zip", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.zip", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.zip", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.stylo-bindings.zip", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.zip", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.zip", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/logs/log_critical.log", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_debug.log", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_error.log", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_fatal.log", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_info.log", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_raw.log", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_warning.log", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "text/plain" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/E1p0LzmBSQqukKd0yhrAjw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/E1p0LzmBSQqukKd0yhrAjw/artifacts/public/build/target.json deleted file mode 100644 index b50a4a26..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/E1p0LzmBSQqukKd0yhrAjw/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "$(CC)", - "buildid": "20191014131614", - "cc": "/builds/worker/workspace/build/src/gcc/bin/gcc -std=gnu99", - "cxx": "/builds/worker/workspace/build/src/gcc/bin/g++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "60.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "60.9.1", - "moz_pkg_platform": "linux-x86_64", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr60", - "moz_source_stamp": "e67641c2e4ccd1fe2d4cd522b6575adec838697a", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/E1p0LzmBSQqukKd0yhrAjw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/E1p0LzmBSQqukKd0yhrAjw/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 754e166d..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/E1p0LzmBSQqukKd0yhrAjw/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "addon_signing": true, - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": true, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk3", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/EAsr0LAZRlKG0shvrKZRnw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/EAsr0LAZRlKG0shvrKZRnw/artifacts/.get new file mode 100644 index 00000000..8cfdaca7 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/EAsr0LAZRlKG0shvrKZRnw/artifacts/.get @@ -0,0 +1,154 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T02:50:54.570Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T02:50:54.570Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T02:50:54.570Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T02:50:54.570Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2020-08-24T02:50:54.570Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2020-08-24T02:50:54.570Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T02:50:54.570Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T02:50:54.570Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T02:50:54.570Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-24T02:50:54.570Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T02:50:54.570Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T02:50:54.570Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T02:50:54.570Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2020-08-24T02:50:54.570Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T02:50:54.570Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.normandy.json", + "expires": "2020-08-24T02:50:54.570Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2020-08-24T02:50:54.570Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T02:50:54.570Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2020-08-24T02:50:54.570Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T02:50:54.570Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T02:50:54.570Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T02:50:54.570Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T02:50:54.570Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T02:50:54.570Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T02:50:54.570Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/EAsr0LAZRlKG0shvrKZRnw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/EAsr0LAZRlKG0shvrKZRnw/artifacts/public/build/target.json new file mode 100644 index 00000000..79f5f5fd --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/EAsr0LAZRlKG0shvrKZRnw/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "buildid": "20200727024623", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-x86_64-fuzzing", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "321902edb883e7a37efc6b686da6f20894c72f21", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/EAsr0LAZRlKG0shvrKZRnw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/EAsr0LAZRlKG0shvrKZRnw/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..b3e9238a --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/EAsr0LAZRlKG0shvrKZRnw/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "debug", + "cc_type": "clang", + "ccov": false, + "crashreporter": false, + "datareporting": true, + "debug": true, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": false, + "os": "linux", + "pgo": false, + "platform_guess": "linux64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/ET3AEftjTpG20Ee7-y-LUw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/ET3AEftjTpG20Ee7-y-LUw/artifacts/.get new file mode 100644 index 00000000..8d50504b --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/ET3AEftjTpG20Ee7-y-LUw/artifacts/.get @@ -0,0 +1,232 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/install/sea/target.installer.exe", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/setup.exe", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.zip", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T14:01:21.505Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/ET3AEftjTpG20Ee7-y-LUw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/ET3AEftjTpG20Ee7-y-LUw/artifacts/public/build/target.json new file mode 100644 index 00000000..2b1313aa --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/ET3AEftjTpG20Ee7-y-LUw/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "", + "buildid": "20200727135612", + "cc": "", + "cxx": "", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "win64", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "76120fed0d42283463b8e066be47892ec427aa67", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-mingw32", + "target_cpu": "x86_64", + "target_os": "mingw32", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/ET3AEftjTpG20Ee7-y-LUw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/ET3AEftjTpG20Ee7-y-LUw/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..e9612ad7 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/ET3AEftjTpG20Ee7-y-LUw/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": true, + "asan": false, + "bin_suffix": ".exe", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": null, + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "win", + "pgo": false, + "platform_guess": "win64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "windows", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/EbSYCuujRemEgav9VDllyQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/EbSYCuujRemEgav9VDllyQ/artifacts/.get deleted file mode 100644 index 790b4e88..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/EbSYCuujRemEgav9VDllyQ/artifacts/.get +++ /dev/null @@ -1,250 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "text/html; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar.exe", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff.exe", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/install/sea/target.installer.exe", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/setup.exe", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.zip", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T04:51:50.383Z", - "contentType": "application/octet-stream" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/EbSYCuujRemEgav9VDllyQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/EbSYCuujRemEgav9VDllyQ/artifacts/public/build/target.json deleted file mode 100644 index 7f427e2b..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/EbSYCuujRemEgav9VDllyQ/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "z:/build/build/src/vs2017_15.8.4/VC/bin/HostX64/x64/ml64.exe", - "buildid": "20191113044959", - "cc": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe -Xclang -std=gnu99", - "cxx": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe", - "host_alias": "x86_64-pc-mingw32", - "host_cpu": "x86_64", - "host_os": "mingw32", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "win64", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "48a708577712a2eb1b19aafcda25b2aa0e607629", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-mingw32", - "target_cpu": "x86_64", - "target_os": "mingw32", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/EbSYCuujRemEgav9VDllyQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/EbSYCuujRemEgav9VDllyQ/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index b0c7e878..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/EbSYCuujRemEgav9VDllyQ/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": ".exe", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "cc_type": "clang-cl", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "z:/build/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "win", - "pgo": false, - "platform_guess": "win64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "windows", - "topsrcdir": "z:/build/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/EyvCI9VSQCabkLWQUnrj1w/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/EyvCI9VSQCabkLWQUnrj1w/artifacts/.get new file mode 100644 index 00000000..2f9bcc09 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/EyvCI9VSQCabkLWQUnrj1w/artifacts/.get @@ -0,0 +1,250 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.normandy.json", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T12:05:51.964Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/EyvCI9VSQCabkLWQUnrj1w/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/EyvCI9VSQCabkLWQUnrj1w/artifacts/public/build/target.json new file mode 100644 index 00000000..a8097b09 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/EyvCI9VSQCabkLWQUnrj1w/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "buildid": "20200727120117", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-x86_64-tsan", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "f36e2474d1eb91a657a494f325caa33ef5311f77", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/EyvCI9VSQCabkLWQUnrj1w/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/EyvCI9VSQCabkLWQUnrj1w/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..ea907cb4 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/EyvCI9VSQCabkLWQUnrj1w/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": false, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": false, + "os": "linux", + "pgo": false, + "platform_guess": "linux64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": true, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/F8mmDlcITXa8pd0PgjYWIQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/F8mmDlcITXa8pd0PgjYWIQ/artifacts/.get deleted file mode 100644 index 6b8b4e93..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/F8mmDlcITXa8pd0PgjYWIQ/artifacts/.get +++ /dev/null @@ -1,238 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.dmg", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-12-02T18:08:55.853Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/F8mmDlcITXa8pd0PgjYWIQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/F8mmDlcITXa8pd0PgjYWIQ/artifacts/public/build/target.json deleted file mode 100644 index 9f53b237..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/F8mmDlcITXa8pd0PgjYWIQ/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", - "buildid": "20191203180713", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk --target=x86_64-apple-darwin", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "73.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "73.0a1", - "moz_pkg_platform": "mac", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "d1001fea6e4c66b98bb4983df49c6e47d2db5ceb", - "moz_update_channel": "default", - "target_alias": "x86_64-apple-darwin", - "target_cpu": "x86_64", - "target_os": "darwin", - "target_vendor": "apple" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/F8mmDlcITXa8pd0PgjYWIQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/F8mmDlcITXa8pd0PgjYWIQ/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 104d0b70..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/F8mmDlcITXa8pd0PgjYWIQ/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "early_beta_or_earlier": true, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "mac", - "pgo": false, - "platform_guess": "macosx64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "cocoa", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/FKLwujNvTGynoiAm9Q7xKQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/FKLwujNvTGynoiAm9Q7xKQ/artifacts/.get deleted file mode 100644 index d603d81d..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/FKLwujNvTGynoiAm9Q7xKQ/artifacts/.get +++ /dev/null @@ -1,214 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T16:18:01.733Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T16:18:01.733Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T16:18:01.733Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T16:18:01.733Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2019-12-11T16:18:01.733Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2019-12-11T16:18:01.733Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T16:18:01.733Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T16:18:01.733Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T16:18:01.733Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T16:18:01.733Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T16:18:01.733Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T16:18:01.733Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T16:18:01.733Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2019-12-11T16:18:01.733Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T16:18:01.733Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T16:18:01.733Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T16:18:01.733Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T16:18:01.733Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T16:18:01.733Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T16:18:01.733Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T16:18:01.733Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2019-12-11T16:18:01.733Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T16:18:01.733Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T16:18:01.733Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T16:18:01.733Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T16:18:01.733Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T16:18:01.733Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T16:18:01.733Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2019-12-11T16:18:01.733Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T16:18:01.733Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T16:18:01.733Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T16:18:01.733Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T16:18:01.733Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T16:18:01.733Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T16:18:01.733Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/FKLwujNvTGynoiAm9Q7xKQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/FKLwujNvTGynoiAm9Q7xKQ/artifacts/public/build/target.json deleted file mode 100644 index deb01d2d..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/FKLwujNvTGynoiAm9Q7xKQ/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "", - "buildid": "20191113161527", - "cc": "", - "cxx": "", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "linux-x86_64", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "9524bc63eaae1ef9b7c8eb85bc62380f4f56786c", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/FKLwujNvTGynoiAm9Q7xKQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/FKLwujNvTGynoiAm9Q7xKQ/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 22894219..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/FKLwujNvTGynoiAm9Q7xKQ/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": true, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "cc_type": null, - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Fl6LbluWQnybFSPpgLMKiw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/Fl6LbluWQnybFSPpgLMKiw/artifacts/.get deleted file mode 100644 index d3eb05ec..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Fl6LbluWQnybFSPpgLMKiw/artifacts/.get +++ /dev/null @@ -1,250 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar.exe", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff.exe", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/install/sea/target.installer.exe", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/setup.exe", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.zip", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.zip", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.zip", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.zip", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.zip", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.zip", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.stylo-bindings.zip", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.zip", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.zip", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.zip", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/log_critical.log", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_error.log", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_fatal.log", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_info.log", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_raw.log", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_warning.log", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "text/plain" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Fl6LbluWQnybFSPpgLMKiw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/Fl6LbluWQnybFSPpgLMKiw/artifacts/public/build/target.json deleted file mode 100644 index 96ef513e..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Fl6LbluWQnybFSPpgLMKiw/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "ml64.exe", - "buildid": "20191014131614", - "cc": "z:/build/build/src/vs2017_15.4.2/VC/bin/Hostx64/x64/cl.exe", - "cxx": "z:/build/build/src/vs2017_15.4.2/VC/bin/Hostx64/x64/cl.exe", - "host_alias": "x86_64-pc-mingw32", - "host_cpu": "x86_64", - "host_os": "mingw32", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "60.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "60.9.1", - "moz_pkg_platform": "win64", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr60", - "moz_source_stamp": "e67641c2e4ccd1fe2d4cd522b6575adec838697a", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-mingw32", - "target_cpu": "x86_64", - "target_os": "mingw32", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/Fl6LbluWQnybFSPpgLMKiw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/Fl6LbluWQnybFSPpgLMKiw/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 5be29f88..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Fl6LbluWQnybFSPpgLMKiw/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "addon_signing": true, - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": ".exe", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "z:/build/build/src/.mozconfig", - "nightly_build": false, - "official": true, - "os": "win", - "pgo": false, - "platform_guess": "win64", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "windows", - "topsrcdir": "z:/build/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Fwy0SF8zRMqipgIp7of-zA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/Fwy0SF8zRMqipgIp7of-zA/artifacts/.get deleted file mode 100644 index 9bd47b30..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Fwy0SF8zRMqipgIp7of-zA/artifacts/.get +++ /dev/null @@ -1,226 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T14:26:39.331Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T14:26:39.331Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T14:26:39.331Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T14:26:39.331Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2019-12-11T14:26:39.331Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2019-12-11T14:26:39.331Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T14:26:39.331Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T14:26:39.331Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T14:26:39.331Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T14:26:39.331Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T14:26:39.331Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T14:26:39.331Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T14:26:39.331Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.dmg", - "expires": "2019-12-11T14:26:39.331Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2019-12-11T14:26:39.331Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2019-12-11T14:26:39.331Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T14:26:39.331Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T14:26:39.331Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2019-12-11T14:26:39.331Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T14:26:39.331Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T14:26:39.331Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T14:26:39.331Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T14:26:39.331Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T14:26:39.331Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T14:26:39.331Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T14:26:39.331Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T14:26:39.331Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T14:26:39.331Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T14:26:39.331Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T14:26:39.331Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2019-12-11T14:26:39.331Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T14:26:39.331Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T14:26:39.331Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T14:26:39.331Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T14:26:39.331Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T14:26:39.331Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T14:26:39.331Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Fwy0SF8zRMqipgIp7of-zA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/Fwy0SF8zRMqipgIp7of-zA/artifacts/public/build/target.json deleted file mode 100644 index 92cf40a3..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Fwy0SF8zRMqipgIp7of-zA/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", - "buildid": "20191113142416", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk --target=x86_64-apple-darwin", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "mac-asan", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "a9395b9ab89526cb934f0d4aa1dc03670c3757c0", - "moz_update_channel": "default", - "target_alias": "x86_64-apple-darwin", - "target_cpu": "x86_64", - "target_os": "darwin", - "target_vendor": "apple" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/Fwy0SF8zRMqipgIp7of-zA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/Fwy0SF8zRMqipgIp7of-zA/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index da4ac7df..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Fwy0SF8zRMqipgIp7of-zA/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": true, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": false, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": false, - "os": "mac", - "pgo": false, - "platform_guess": "macosx64-asan", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "cocoa", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/FwzXYhK4TpupXO6emQzZbA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/FwzXYhK4TpupXO6emQzZbA/artifacts/.get new file mode 100644 index 00000000..34d04188 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/FwzXYhK4TpupXO6emQzZbA/artifacts/.get @@ -0,0 +1,154 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T09:55:01.455Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T09:55:01.455Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T09:55:01.455Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T09:55:01.455Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2021-07-27T09:55:01.455Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2021-07-27T09:55:01.455Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T09:55:01.455Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T09:55:01.455Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T09:55:01.455Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T09:55:01.455Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T09:55:01.455Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T09:55:01.455Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T09:55:01.455Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T09:55:01.455Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T09:55:01.455Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.normandy.json", + "expires": "2021-07-27T09:55:01.455Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2021-07-27T09:55:01.455Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T09:55:01.455Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2021-07-27T09:55:01.455Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T09:55:01.455Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T09:55:01.455Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T09:55:01.455Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T09:55:01.455Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T09:55:01.455Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T09:55:01.455Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/FwzXYhK4TpupXO6emQzZbA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/FwzXYhK4TpupXO6emQzZbA/artifacts/public/build/target.json new file mode 100644 index 00000000..efa0cb5c --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/FwzXYhK4TpupXO6emQzZbA/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "buildid": "20200727095125", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-x86_64-fuzzing", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "798bdad605b985a71cd204a56bb816dea503d432", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/FwzXYhK4TpupXO6emQzZbA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/FwzXYhK4TpupXO6emQzZbA/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..b3e9238a --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/FwzXYhK4TpupXO6emQzZbA/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "debug", + "cc_type": "clang", + "ccov": false, + "crashreporter": false, + "datareporting": true, + "debug": true, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": false, + "os": "linux", + "pgo": false, + "platform_guess": "linux64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/FykUIja8R_eqYlOI7KOO1A/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/FykUIja8R_eqYlOI7KOO1A/artifacts/.get deleted file mode 100644 index 19b3fca2..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/FykUIja8R_eqYlOI7KOO1A/artifacts/.get +++ /dev/null @@ -1,220 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-11T03:09:35.438Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-11T03:09:35.438Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-11T03:09:35.438Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-11T03:09:35.438Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-11T03:09:35.438Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-11T03:09:35.438Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-11T03:09:35.438Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-11T03:09:35.438Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.438Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-11T03:09:35.438Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-11T03:09:35.438Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-11T03:09:35.438Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.438Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-11T03:09:35.438Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-11T03:09:35.438Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-11T03:09:35.438Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.438Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-11T03:09:35.438Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-11T03:09:35.438Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.438Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-11T03:09:35.438Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-11-11T03:09:35.438Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-11T03:09:35.438Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-11T03:09:35.438Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-11T03:09:35.438Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-11T03:09:35.438Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-11T03:09:35.438Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-11T03:09:35.438Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-11T03:09:35.438Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-11-11T03:09:35.438Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-11T03:09:35.438Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-11T03:09:35.438Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-11T03:09:35.438Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-11T03:09:35.438Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-11T03:09:35.438Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-11T03:09:35.438Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/FykUIja8R_eqYlOI7KOO1A/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/FykUIja8R_eqYlOI7KOO1A/artifacts/public/build/target.json deleted file mode 100644 index 96e758ac..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/FykUIja8R_eqYlOI7KOO1A/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/workspace/build/src/clang/bin/clang -std=gnu99 -m32", - "buildid": "20191112030804", - "cc": "/builds/worker/workspace/build/src/clang/bin/clang -std=gnu99 -m32", - "cxx": "/builds/worker/workspace/build/src/clang/bin/clang++ -m32", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "68.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "68.2.1", - "moz_pkg_platform": "linux-i686", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr68", - "moz_source_stamp": "506341a9f6a39813794bca976bf298963eeebf7e", - "moz_update_channel": "default", - "target_alias": "i686-pc-linux-gnu", - "target_cpu": "i686", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/FykUIja8R_eqYlOI7KOO1A/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/FykUIja8R_eqYlOI7KOO1A/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index bd22ce6e..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/FykUIja8R_eqYlOI7KOO1A/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 32, - "buildapp": "browser", - "buildtype_guess": "debug", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": true, - "os": "linux", - "pgo": false, - "platform_guess": "linux", - "processor": "x86", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk3", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Gg-5BIgxRzO6EqQwfp0gDQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/Gg-5BIgxRzO6EqQwfp0gDQ/artifacts/.get deleted file mode 100644 index 35388c29..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Gg-5BIgxRzO6EqQwfp0gDQ/artifacts/.get +++ /dev/null @@ -1,238 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "text/html; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar.exe", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff.exe", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/install/sea/target.installer.exe", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/setup.exe", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.zip", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T09:57:05.756Z", - "contentType": "application/octet-stream" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Gg-5BIgxRzO6EqQwfp0gDQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/Gg-5BIgxRzO6EqQwfp0gDQ/artifacts/public/build/target.json deleted file mode 100644 index 30ae1cde..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Gg-5BIgxRzO6EqQwfp0gDQ/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "z:/build/build/src/vs2017_15.8.4/VC/bin/HostX64/x64/ml64.exe", - "buildid": "20191113095525", - "cc": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe -Xclang -std=gnu99", - "cxx": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe", - "host_alias": "x86_64-pc-mingw32", - "host_cpu": "x86_64", - "host_os": "mingw32", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "win64-asan", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "2f19e7b646e0a52fa855b75c868f0a3f3a990ad3", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-mingw32", - "target_cpu": "x86_64", - "target_os": "mingw32", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/Gg-5BIgxRzO6EqQwfp0gDQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/Gg-5BIgxRzO6EqQwfp0gDQ/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index c581adbe..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Gg-5BIgxRzO6EqQwfp0gDQ/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": true, - "bin_suffix": ".exe", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang-cl", - "ccov": false, - "crashreporter": false, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "z:/build/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": false, - "os": "win", - "pgo": false, - "platform_guess": "win64-asan", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "windows", - "topsrcdir": "z:/build/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/GvUiVimuRnyk27mDsZyAzQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/GvUiVimuRnyk27mDsZyAzQ/artifacts/.get new file mode 100644 index 00000000..e0d089f1 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/GvUiVimuRnyk27mDsZyAzQ/artifacts/.get @@ -0,0 +1,328 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/geckoview-androidTest.apk", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/geckoview_example.apk", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727133716/geckoview-default-armeabi-v7a-80.0.20200727133716.aar", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727133716/geckoview-default-armeabi-v7a-80.0.20200727133716.aar.md5", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727133716/geckoview-default-armeabi-v7a-80.0.20200727133716.aar.sha1", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727133716/geckoview-default-armeabi-v7a-80.0.20200727133716-javadoc.jar", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727133716/geckoview-default-armeabi-v7a-80.0.20200727133716-javadoc.jar.md5", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727133716/geckoview-default-armeabi-v7a-80.0.20200727133716-javadoc.jar.sha1", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727133716/geckoview-default-armeabi-v7a-80.0.20200727133716.pom", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727133716/geckoview-default-armeabi-v7a-80.0.20200727133716.pom.md5", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727133716/geckoview-default-armeabi-v7a-80.0.20200727133716.pom.sha1", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727133716/geckoview-default-armeabi-v7a-80.0.20200727133716-sources.jar", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727133716/geckoview-default-armeabi-v7a-80.0.20200727133716-sources.jar.md5", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727133716/geckoview-default-armeabi-v7a-80.0.20200727133716-sources.jar.sha1", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/xml" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml.md5", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml.sha1", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T13:43:31.648Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/GvUiVimuRnyk27mDsZyAzQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/GvUiVimuRnyk27mDsZyAzQ/artifacts/public/build/target.json new file mode 100644 index 00000000..577532a7 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/GvUiVimuRnyk27mDsZyAzQ/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=arm-linux-androideabi", + "buildid": "20200727133716", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=arm-linux-androideabi", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17 --target=arm-linux-androideabi", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "fennec", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "android-arm", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "0e27829b5edf25746edcc684970c9e74f9604b4a", + "moz_update_channel": "default", + "target_alias": "arm-unknown-linux-androideabi", + "target_cpu": "arm", + "target_os": "linux-androideabi", + "target_vendor": "unknown" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/GvUiVimuRnyk27mDsZyAzQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/GvUiVimuRnyk27mDsZyAzQ/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..3ba13582 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/GvUiVimuRnyk27mDsZyAzQ/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,37 @@ +{ + "android_min_sdk": "16", + "appname": "fennec", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 32, + "buildapp": "mobile/android", + "buildtype_guess": "debug", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": true, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": false, + "official": true, + "os": "android", + "pgo": false, + "platform_guess": "android-arm", + "processor": "arm", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": false, + "telemetry": false, + "tests_enabled": true, + "toolkit": "android", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": false +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/H0o8ZQuEQH6xvxBu_kG8Vw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/H0o8ZQuEQH6xvxBu_kG8Vw/artifacts/.get deleted file mode 100644 index 96d54eed..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/H0o8ZQuEQH6xvxBu_kG8Vw/artifacts/.get +++ /dev/null @@ -1,250 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "text/html; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar.exe", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff.exe", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/install/sea/target.installer.exe", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/setup.exe", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.zip", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T00:03:46.879Z", - "contentType": "application/octet-stream" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/H0o8ZQuEQH6xvxBu_kG8Vw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/H0o8ZQuEQH6xvxBu_kG8Vw/artifacts/public/build/target.json deleted file mode 100644 index de664622..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/H0o8ZQuEQH6xvxBu_kG8Vw/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "z:/build/build/src/vs2017_15.9.6/VC/bin/HostX64/arm64/armasm64.exe", - "buildid": "20191113000048", - "cc": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe -Xclang -std=gnu99 --target=aarch64-windows-msvc", - "cxx": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe --target=aarch64-windows-msvc", - "host_alias": "x86_64-pc-mingw32", - "host_cpu": "x86_64", - "host_os": "mingw32", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "win64", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "77b18bc38fcfb26cbd1df38bc67ec840399a87e0", - "moz_update_channel": "default", - "target_alias": "aarch64-windows-mingw32", - "target_cpu": "aarch64", - "target_os": "mingw32", - "target_vendor": "windows" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/H0o8ZQuEQH6xvxBu_kG8Vw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/H0o8ZQuEQH6xvxBu_kG8Vw/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index f144abc4..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/H0o8ZQuEQH6xvxBu_kG8Vw/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": ".exe", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang-cl", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "z:/build/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "win", - "pgo": false, - "platform_guess": "win64", - "processor": "aarch64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "windows", - "topsrcdir": "z:/build/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/H24YzyhsQJiyCtSuid0Hgw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/H24YzyhsQJiyCtSuid0Hgw/artifacts/.get new file mode 100644 index 00000000..6c17178b --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/H24YzyhsQJiyCtSuid0Hgw/artifacts/.get @@ -0,0 +1,232 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/geckoview-androidTest.apk", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/geckoview_example.apk", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727033000/geckoview-default-x86-80.0.20200727033000.aar", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727033000/geckoview-default-x86-80.0.20200727033000.aar.md5", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727033000/geckoview-default-x86-80.0.20200727033000.aar.sha1", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727033000/geckoview-default-x86-80.0.20200727033000-javadoc.jar", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727033000/geckoview-default-x86-80.0.20200727033000-javadoc.jar.md5", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727033000/geckoview-default-x86-80.0.20200727033000-javadoc.jar.sha1", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727033000/geckoview-default-x86-80.0.20200727033000.pom", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727033000/geckoview-default-x86-80.0.20200727033000.pom.md5", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727033000/geckoview-default-x86-80.0.20200727033000.pom.sha1", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727033000/geckoview-default-x86-80.0.20200727033000-sources.jar", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727033000/geckoview-default-x86-80.0.20200727033000-sources.jar.md5", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727033000/geckoview-default-x86-80.0.20200727033000-sources.jar.sha1", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "application/xml" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml.md5", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml.sha1", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T03:36:23.948Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/H24YzyhsQJiyCtSuid0Hgw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/H24YzyhsQJiyCtSuid0Hgw/artifacts/public/build/target.json new file mode 100644 index 00000000..ac01b407 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/H24YzyhsQJiyCtSuid0Hgw/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=i686-linux-android", + "buildid": "20200727033000", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=i686-linux-android", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17 --target=i686-linux-android", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "fennec", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "android-i686-fuzzing", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "56082fc4acfacba40993e47ef8302993c59e264e", + "moz_update_channel": "default", + "target_alias": "i686-pc-linux-android", + "target_cpu": "i686", + "target_os": "linux-android", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/H24YzyhsQJiyCtSuid0Hgw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/H24YzyhsQJiyCtSuid0Hgw/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..1e2e994a --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/H24YzyhsQJiyCtSuid0Hgw/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,37 @@ +{ + "android_min_sdk": "16", + "appname": "fennec", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 32, + "buildapp": "mobile/android", + "buildtype_guess": "debug", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": true, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": false, + "official": true, + "os": "android", + "pgo": false, + "platform_guess": "android-x86", + "processor": "x86", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": false, + "telemetry": false, + "tests_enabled": true, + "toolkit": "android", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": false +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/HQf-0m7FScyEDkp53DN1Zw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/HQf-0m7FScyEDkp53DN1Zw/artifacts/.get deleted file mode 100644 index 1c2df3f5..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/HQf-0m7FScyEDkp53DN1Zw/artifacts/.get +++ /dev/null @@ -1,250 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "text/html; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar.exe", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff.exe", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/install/sea/target.installer.exe", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/setup.exe", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.zip", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T14:26:39.311Z", - "contentType": "application/octet-stream" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/HQf-0m7FScyEDkp53DN1Zw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/HQf-0m7FScyEDkp53DN1Zw/artifacts/public/build/target.json deleted file mode 100644 index 74d36287..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/HQf-0m7FScyEDkp53DN1Zw/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "z:/build/build/src/vs2017_15.9.6/VC/bin/HostX64/arm64/armasm64.exe", - "buildid": "20191113142416", - "cc": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe -Xclang -std=gnu99 --target=aarch64-windows-msvc", - "cxx": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe --target=aarch64-windows-msvc", - "host_alias": "x86_64-pc-mingw32", - "host_cpu": "x86_64", - "host_os": "mingw32", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "win64", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "a9395b9ab89526cb934f0d4aa1dc03670c3757c0", - "moz_update_channel": "default", - "target_alias": "aarch64-windows-mingw32", - "target_cpu": "aarch64", - "target_os": "mingw32", - "target_vendor": "windows" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/HQf-0m7FScyEDkp53DN1Zw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/HQf-0m7FScyEDkp53DN1Zw/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index f144abc4..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/HQf-0m7FScyEDkp53DN1Zw/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": ".exe", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang-cl", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "z:/build/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "win", - "pgo": false, - "platform_guess": "win64", - "processor": "aarch64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "windows", - "topsrcdir": "z:/build/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/HVoX1ojESkaTOYjkbXMAog/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/HVoX1ojESkaTOYjkbXMAog/artifacts/.get deleted file mode 100644 index 603eaafa..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/HVoX1ojESkaTOYjkbXMAog/artifacts/.get +++ /dev/null @@ -1,238 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T00:03:46.954Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/HVoX1ojESkaTOYjkbXMAog/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/HVoX1ojESkaTOYjkbXMAog/artifacts/public/build/target.json deleted file mode 100644 index 5bae593f..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/HVoX1ojESkaTOYjkbXMAog/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 -m32", - "buildid": "20191113000048", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 -m32", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -m32", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "linux-i686", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "77b18bc38fcfb26cbd1df38bc67ec840399a87e0", - "moz_update_channel": "default", - "target_alias": "i686-pc-linux-gnu", - "target_cpu": "i686", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/HVoX1ojESkaTOYjkbXMAog/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/HVoX1ojESkaTOYjkbXMAog/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 469b36d8..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/HVoX1ojESkaTOYjkbXMAog/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 32, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "linux", - "pgo": false, - "platform_guess": "linux", - "processor": "x86", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Hb8SgS8zQ7SuviN-QoI0LQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/Hb8SgS8zQ7SuviN-QoI0LQ/artifacts/.get deleted file mode 100644 index 8acdb100..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Hb8SgS8zQ7SuviN-QoI0LQ/artifacts/.get +++ /dev/null @@ -1,226 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-11T03:09:35.793Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-11T03:09:35.793Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar.exe", - "expires": "2020-11-11T03:09:35.793Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff.exe", - "expires": "2020-11-11T03:09:35.793Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/install/sea/target.installer.exe", - "expires": "2020-11-11T03:09:35.793Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-11T03:09:35.793Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/setup.exe", - "expires": "2020-11-11T03:09:35.793Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-11T03:09:35.793Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-11T03:09:35.793Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-11T03:09:35.793Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.793Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-11T03:09:35.793Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-11T03:09:35.793Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-11T03:09:35.793Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.793Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-11T03:09:35.793Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-11T03:09:35.793Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-11T03:09:35.793Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.793Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-11T03:09:35.793Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-11T03:09:35.793Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.793Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-11T03:09:35.793Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-11T03:09:35.793Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-11T03:09:35.793Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-11T03:09:35.793Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-11T03:09:35.793Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-11T03:09:35.793Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.zip", - "expires": "2020-11-11T03:09:35.793Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-11T03:09:35.793Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-11T03:09:35.793Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-11T03:09:35.793Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-11T03:09:35.793Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-11T03:09:35.793Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-11T03:09:35.793Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-11T03:09:35.793Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-11T03:09:35.793Z", - "contentType": "application/octet-stream" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Hb8SgS8zQ7SuviN-QoI0LQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/Hb8SgS8zQ7SuviN-QoI0LQ/artifacts/public/build/target.json deleted file mode 100644 index 6b31661e..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Hb8SgS8zQ7SuviN-QoI0LQ/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "z:/build/build/src/vs2017_15.9.6/VC/bin/HostX64/arm64/armasm64.exe", - "buildid": "20191112030804", - "cc": "z:/build/build/src/clang/bin/clang-cl.exe -Xclang -std=gnu99 --target=aarch64-windows-msvc", - "cxx": "z:/build/build/src/clang/bin/clang-cl.exe --target=aarch64-windows-msvc", - "host_alias": "x86_64-pc-mingw32", - "host_cpu": "x86_64", - "host_os": "mingw32", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "68.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "68.2.1", - "moz_pkg_platform": "win64", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr68", - "moz_source_stamp": "506341a9f6a39813794bca976bf298963eeebf7e", - "moz_update_channel": "default", - "target_alias": "aarch64-windows-mingw32", - "target_cpu": "aarch64", - "target_os": "mingw32", - "target_vendor": "windows" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/Hb8SgS8zQ7SuviN-QoI0LQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/Hb8SgS8zQ7SuviN-QoI0LQ/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 871eb929..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Hb8SgS8zQ7SuviN-QoI0LQ/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": ".exe", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "cc_type": "clang-cl", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "z:/build/build/src/.mozconfig", - "nightly_build": false, - "official": true, - "os": "win", - "pgo": false, - "platform_guess": "win64", - "processor": "aarch64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "windows", - "topsrcdir": "z:/build/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Hbj3dhiKQG-0pnjl_9NvUQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/Hbj3dhiKQG-0pnjl_9NvUQ/artifacts/.get deleted file mode 100644 index e8fe0da2..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Hbj3dhiKQG-0pnjl_9NvUQ/artifacts/.get +++ /dev/null @@ -1,238 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T09:57:05.034Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Hbj3dhiKQG-0pnjl_9NvUQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/Hbj3dhiKQG-0pnjl_9NvUQ/artifacts/public/build/target.json deleted file mode 100644 index 94bf7714..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Hbj3dhiKQG-0pnjl_9NvUQ/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "buildid": "20191113095525", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "linux-x86_64", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "2f19e7b646e0a52fa855b75c868f0a3f3a990ad3", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/Hbj3dhiKQG-0pnjl_9NvUQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/Hbj3dhiKQG-0pnjl_9NvUQ/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index b4ea19e5..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Hbj3dhiKQG-0pnjl_9NvUQ/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/HtyWFQuASxeVe3hGRexbqg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/HtyWFQuASxeVe3hGRexbqg/artifacts/.get deleted file mode 100644 index 497c36d8..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/HtyWFQuASxeVe3hGRexbqg/artifacts/.get +++ /dev/null @@ -1,310 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/geckoview-androidTest.apk", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/geckoview_example.apk", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113095525/geckoview-default-x86-72.0.20191113095525-javadoc.jar", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113095525/geckoview-default-x86-72.0.20191113095525-javadoc.jar.md5", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113095525/geckoview-default-x86-72.0.20191113095525-javadoc.jar.sha1", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113095525/geckoview-default-x86-72.0.20191113095525-sources.jar", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113095525/geckoview-default-x86-72.0.20191113095525-sources.jar.md5", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113095525/geckoview-default-x86-72.0.20191113095525-sources.jar.sha1", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113095525/geckoview-default-x86-72.0.20191113095525.aar", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113095525/geckoview-default-x86-72.0.20191113095525.aar.md5", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113095525/geckoview-default-x86-72.0.20191113095525.aar.sha1", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113095525/geckoview-default-x86-72.0.20191113095525.pom", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113095525/geckoview-default-x86-72.0.20191113095525.pom.md5", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113095525/geckoview-default-x86-72.0.20191113095525.pom.sha1", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/xml" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml.md5", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml.sha1", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T09:57:06.855Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/HtyWFQuASxeVe3hGRexbqg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/HtyWFQuASxeVe3hGRexbqg/artifacts/public/build/target.json deleted file mode 100644 index f0f5e016..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/HtyWFQuASxeVe3hGRexbqg/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=i686-linux-android", - "buildid": "20191113095525", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=i686-linux-android", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ --target=i686-linux-android", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "fennec", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "android-i686-fuzzing", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "2f19e7b646e0a52fa855b75c868f0a3f3a990ad3", - "moz_update_channel": "default", - "target_alias": "i686-pc-linux-android", - "target_cpu": "i686", - "target_os": "linux-android", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/HtyWFQuASxeVe3hGRexbqg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/HtyWFQuASxeVe3hGRexbqg/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index e394ea55..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/HtyWFQuASxeVe3hGRexbqg/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "allow_legacy_extensions": true, - "android_min_sdk": "16", - "appname": "fennec", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 32, - "buildapp": "mobile/android", - "buildtype_guess": "debug", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": false, - "official": true, - "os": "android", - "pgo": false, - "platform_guess": "android-x86", - "processor": "x86", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": false, - "telemetry": false, - "tests_enabled": true, - "toolkit": "android", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/I5aqK_5aS8aTHqQGYJJtdQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/I5aqK_5aS8aTHqQGYJJtdQ/artifacts/.get deleted file mode 100644 index d6dc30cf..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/I5aqK_5aS8aTHqQGYJJtdQ/artifacts/.get +++ /dev/null @@ -1,250 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "text/html; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar.exe", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff.exe", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/install/sea/target.installer.exe", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/setup.exe", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.zip", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T09:57:03.765Z", - "contentType": "application/octet-stream" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/I5aqK_5aS8aTHqQGYJJtdQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/I5aqK_5aS8aTHqQGYJJtdQ/artifacts/public/build/target.json deleted file mode 100644 index 667820ce..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/I5aqK_5aS8aTHqQGYJJtdQ/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "z:/build/build/src/vs2017_15.9.6/VC/bin/HostX64/arm64/armasm64.exe", - "buildid": "20191113095525", - "cc": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe -Xclang -std=gnu99 --target=aarch64-windows-msvc", - "cxx": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe --target=aarch64-windows-msvc", - "host_alias": "x86_64-pc-mingw32", - "host_cpu": "x86_64", - "host_os": "mingw32", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "win64", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "2f19e7b646e0a52fa855b75c868f0a3f3a990ad3", - "moz_update_channel": "default", - "target_alias": "aarch64-windows-mingw32", - "target_cpu": "aarch64", - "target_os": "mingw32", - "target_vendor": "windows" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/I5aqK_5aS8aTHqQGYJJtdQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/I5aqK_5aS8aTHqQGYJJtdQ/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index ef64d76d..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/I5aqK_5aS8aTHqQGYJJtdQ/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": ".exe", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "cc_type": "clang-cl", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "z:/build/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "win", - "pgo": false, - "platform_guess": "win64", - "processor": "aarch64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "windows", - "topsrcdir": "z:/build/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/IGVNTQ8qT9aGmKqQe718sQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/IGVNTQ8qT9aGmKqQe718sQ/artifacts/.get new file mode 100644 index 00000000..a2b7ea63 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/IGVNTQ8qT9aGmKqQe718sQ/artifacts/.get @@ -0,0 +1,250 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.normandy.json", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T03:36:23.292Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/IGVNTQ8qT9aGmKqQe718sQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/IGVNTQ8qT9aGmKqQe718sQ/artifacts/public/build/target.json new file mode 100644 index 00000000..e733c05c --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/IGVNTQ8qT9aGmKqQe718sQ/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "buildid": "20200727033000", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-x86_64-asan", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "56082fc4acfacba40993e47ef8302993c59e264e", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/IGVNTQ8qT9aGmKqQe718sQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/IGVNTQ8qT9aGmKqQe718sQ/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..e84f4330 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/IGVNTQ8qT9aGmKqQe718sQ/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": true, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": false, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": false, + "os": "linux", + "pgo": false, + "platform_guess": "linux64-asan", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": true, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/ILoMNgK7Q1-LpNWZrnl6WA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/ILoMNgK7Q1-LpNWZrnl6WA/artifacts/.get deleted file mode 100644 index 67667804..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/ILoMNgK7Q1-LpNWZrnl6WA/artifacts/.get +++ /dev/null @@ -1,214 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-11T03:09:35.447Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-11T03:09:35.447Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-11T03:09:35.447Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-11T03:09:35.447Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-11T03:09:35.447Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-11T03:09:35.447Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-11T03:09:35.447Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-11T03:09:35.447Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.447Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-11T03:09:35.447Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-11T03:09:35.447Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.447Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-11T03:09:35.447Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-11T03:09:35.447Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-11T03:09:35.447Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.447Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-11T03:09:35.447Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-11T03:09:35.447Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.447Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-11T03:09:35.447Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-11-11T03:09:35.447Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-11T03:09:35.447Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-11T03:09:35.447Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-11T03:09:35.447Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-11T03:09:35.447Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-11T03:09:35.447Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-11T03:09:35.447Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-11T03:09:35.447Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-11-11T03:09:35.447Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-11T03:09:35.447Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-11T03:09:35.447Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-11T03:09:35.447Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-11T03:09:35.447Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-11T03:09:35.447Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-11T03:09:35.447Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/ILoMNgK7Q1-LpNWZrnl6WA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/ILoMNgK7Q1-LpNWZrnl6WA/artifacts/public/build/target.json deleted file mode 100644 index 366ed101..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/ILoMNgK7Q1-LpNWZrnl6WA/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/workspace/build/src/gcc/bin/gcc -std=gnu99", - "buildid": "20191112030804", - "cc": "/builds/worker/workspace/build/src/gcc/bin/gcc -std=gnu99", - "cxx": "/builds/worker/workspace/build/src/gcc/bin/g++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "68.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "68.2.1", - "moz_pkg_platform": "linux-x86_64-fuzzing", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr68", - "moz_source_stamp": "506341a9f6a39813794bca976bf298963eeebf7e", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/ILoMNgK7Q1-LpNWZrnl6WA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/ILoMNgK7Q1-LpNWZrnl6WA/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 0302af10..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/ILoMNgK7Q1-LpNWZrnl6WA/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "cc_type": "gcc", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": false, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk3", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/IXnHnehhSjGDB8s_e_-N_w/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/IXnHnehhSjGDB8s_e_-N_w/artifacts/.get deleted file mode 100644 index 8cccafd3..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/IXnHnehhSjGDB8s_e_-N_w/artifacts/.get +++ /dev/null @@ -1,238 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.zip", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.zip", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.zip", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.zip", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.zip", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.zip", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.stylo-bindings.zip", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.zip", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.zip", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/logs/log_critical.log", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_debug.log", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_error.log", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_fatal.log", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_info.log", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_raw.log", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_warning.log", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "text/plain" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/IXnHnehhSjGDB8s_e_-N_w/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/IXnHnehhSjGDB8s_e_-N_w/artifacts/public/build/target.json deleted file mode 100644 index a85f3f93..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/IXnHnehhSjGDB8s_e_-N_w/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "$(CC)", - "buildid": "20191014131614", - "cc": "/builds/worker/workspace/build/src/clang/bin/clang -fgnu89-inline -B /builds/worker/workspace/build/src/gcc/bin -std=gnu99", - "cxx": "/builds/worker/workspace/build/src/clang/bin/clang++ -B /builds/worker/workspace/build/src/gcc/bin -std=gnu++14", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "60.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "60.9.1", - "moz_pkg_platform": "linux-x86_64-asan", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr60", - "moz_source_stamp": "e67641c2e4ccd1fe2d4cd522b6575adec838697a", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/IXnHnehhSjGDB8s_e_-N_w/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/IXnHnehhSjGDB8s_e_-N_w/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 6aff7c6f..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/IXnHnehhSjGDB8s_e_-N_w/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "addon_signing": true, - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": true, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "ccov": false, - "crashreporter": false, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": false, - "os": "linux", - "pgo": false, - "platform_guess": "linux64-asan", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk3", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/I_YZfyq-RQaKlB7F5kw_fw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/I_YZfyq-RQaKlB7F5kw_fw/artifacts/.get deleted file mode 100644 index 1b95a244..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/I_YZfyq-RQaKlB7F5kw_fw/artifacts/.get +++ /dev/null @@ -1,316 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/geckoview-androidTest.apk", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/geckoview_example.apk", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113142416/geckoview-default-x86-72.0.20191113142416-javadoc.jar", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113142416/geckoview-default-x86-72.0.20191113142416-javadoc.jar.md5", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113142416/geckoview-default-x86-72.0.20191113142416-javadoc.jar.sha1", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113142416/geckoview-default-x86-72.0.20191113142416-sources.jar", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113142416/geckoview-default-x86-72.0.20191113142416-sources.jar.md5", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113142416/geckoview-default-x86-72.0.20191113142416-sources.jar.sha1", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113142416/geckoview-default-x86-72.0.20191113142416.aar", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113142416/geckoview-default-x86-72.0.20191113142416.aar.md5", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113142416/geckoview-default-x86-72.0.20191113142416.aar.sha1", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113142416/geckoview-default-x86-72.0.20191113142416.pom", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113142416/geckoview-default-x86-72.0.20191113142416.pom.md5", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113142416/geckoview-default-x86-72.0.20191113142416.pom.sha1", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/xml" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml.md5", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml.sha1", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/I_YZfyq-RQaKlB7F5kw_fw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/I_YZfyq-RQaKlB7F5kw_fw/artifacts/public/build/target.json deleted file mode 100644 index b99ffaa6..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/I_YZfyq-RQaKlB7F5kw_fw/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=i686-linux-android", - "buildid": "20191113142416", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=i686-linux-android", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ --target=i686-linux-android", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "fennec", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "android-i686", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "a9395b9ab89526cb934f0d4aa1dc03670c3757c0", - "moz_update_channel": "default", - "target_alias": "i686-pc-linux-android", - "target_cpu": "i686", - "target_os": "linux-android", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/I_YZfyq-RQaKlB7F5kw_fw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/I_YZfyq-RQaKlB7F5kw_fw/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index cb8f2cdc..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/I_YZfyq-RQaKlB7F5kw_fw/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "allow_legacy_extensions": true, - "android_min_sdk": "16", - "appname": "fennec", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 32, - "buildapp": "mobile/android", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": false, - "official": true, - "os": "android", - "pgo": false, - "platform_guess": "android-x86", - "processor": "x86", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": false, - "telemetry": false, - "tests_enabled": true, - "toolkit": "android", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Ib_jWVa3THe2y6CF-WKUvg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/Ib_jWVa3THe2y6CF-WKUvg/artifacts/.get new file mode 100644 index 00000000..a25442ca --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/Ib_jWVa3THe2y6CF-WKUvg/artifacts/.get @@ -0,0 +1,256 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/install/sea/target.installer.exe", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/setup.exe", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.zip", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T09:55:01.773Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Ib_jWVa3THe2y6CF-WKUvg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/Ib_jWVa3THe2y6CF-WKUvg/artifacts/public/build/target.json new file mode 100644 index 00000000..6ee2b81b --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/Ib_jWVa3THe2y6CF-WKUvg/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/checkouts/gecko/vs2017_15.9.6/VC/bin/Hostx64/arm64/armasm64.exe", + "buildid": "20200727095125", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang-cl -Xclang -std=gnu99 --target=aarch64-windows-msvc", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang-cl -Xclang -std=c++17 --target=aarch64-windows-msvc", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "win64-aarch64", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "798bdad605b985a71cd204a56bb816dea503d432", + "moz_update_channel": "default", + "target_alias": "aarch64-windows-mingw32", + "target_cpu": "aarch64", + "target_os": "mingw32", + "target_vendor": "windows" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/Ib_jWVa3THe2y6CF-WKUvg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/Ib_jWVa3THe2y6CF-WKUvg/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..1c5c0593 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/Ib_jWVa3THe2y6CF-WKUvg/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": ".exe", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang-cl", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "win", + "pgo": false, + "platform_guess": "win64", + "processor": "aarch64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "windows", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/IcvNfH9ORHO7D-nLmmFkFg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/IcvNfH9ORHO7D-nLmmFkFg/artifacts/.get new file mode 100644 index 00000000..c832c18c --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/IcvNfH9ORHO7D-nLmmFkFg/artifacts/.get @@ -0,0 +1,232 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/install/sea/target.installer.exe", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/setup.exe", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.zip", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T13:54:31.666Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/IcvNfH9ORHO7D-nLmmFkFg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/IcvNfH9ORHO7D-nLmmFkFg/artifacts/public/build/target.json new file mode 100644 index 00000000..9579ceb0 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/IcvNfH9ORHO7D-nLmmFkFg/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "", + "buildid": "20200727134833", + "cc": "", + "cxx": "", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "win64", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "70426fd9a691ac3a6507d4861cb714a0fb6dc188", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-mingw32", + "target_cpu": "x86_64", + "target_os": "mingw32", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/IcvNfH9ORHO7D-nLmmFkFg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/IcvNfH9ORHO7D-nLmmFkFg/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..3629eb0f --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/IcvNfH9ORHO7D-nLmmFkFg/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": true, + "asan": false, + "bin_suffix": ".exe", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "debug", + "cc_type": null, + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": true, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "win", + "pgo": false, + "platform_guess": "win64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "windows", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/IfFwN9_ISSyyGrOls_svcQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/IfFwN9_ISSyyGrOls_svcQ/artifacts/.get deleted file mode 100644 index c84e7933..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/IfFwN9_ISSyyGrOls_svcQ/artifacts/.get +++ /dev/null @@ -1,226 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T04:51:49.805Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T04:51:49.805Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T04:51:49.805Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T04:51:49.805Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T04:51:49.805Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-12T04:51:49.805Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T04:51:49.805Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T04:51:49.805Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T04:51:49.805Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T04:51:49.805Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T04:51:49.805Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T04:51:49.805Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T04:51:49.805Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T04:51:49.805Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-12T04:51:49.805Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T04:51:49.805Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T04:51:49.805Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-12T04:51:49.805Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T04:51:49.805Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T04:51:49.805Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T04:51:49.805Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T04:51:49.805Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T04:51:49.805Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-11-12T04:51:49.805Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T04:51:49.805Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T04:51:49.805Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T04:51:49.805Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T04:51:49.805Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T04:51:49.805Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T04:51:49.805Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-11-12T04:51:49.805Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T04:51:49.805Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T04:51:49.805Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T04:51:49.805Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T04:51:49.805Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T04:51:49.805Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T04:51:49.805Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/IfFwN9_ISSyyGrOls_svcQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/IfFwN9_ISSyyGrOls_svcQ/artifacts/public/build/target.json deleted file mode 100644 index f652ab3b..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/IfFwN9_ISSyyGrOls_svcQ/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "buildid": "20191113044959", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "linux-x86_64-asan", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "48a708577712a2eb1b19aafcda25b2aa0e607629", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/IfFwN9_ISSyyGrOls_svcQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/IfFwN9_ISSyyGrOls_svcQ/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 3162c70d..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/IfFwN9_ISSyyGrOls_svcQ/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": true, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": false, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": false, - "os": "linux", - "pgo": false, - "platform_guess": "linux64-asan", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": true, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Ig2OuYpHQemmaN4Qgjeh8g/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/Ig2OuYpHQemmaN4Qgjeh8g/artifacts/.get new file mode 100644 index 00000000..c5debbaa --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/Ig2OuYpHQemmaN4Qgjeh8g/artifacts/.get @@ -0,0 +1,250 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.normandy.json", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T02:36:00.574Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Ig2OuYpHQemmaN4Qgjeh8g/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/Ig2OuYpHQemmaN4Qgjeh8g/artifacts/public/build/target.json new file mode 100644 index 00000000..a8ba99fe --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/Ig2OuYpHQemmaN4Qgjeh8g/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "buildid": "20200727023128", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-x86_64-asan", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "fb75f4882a8c02975bd0baeb767f56de15679e20", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/Ig2OuYpHQemmaN4Qgjeh8g/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/Ig2OuYpHQemmaN4Qgjeh8g/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..e84f4330 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/Ig2OuYpHQemmaN4Qgjeh8g/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": true, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": false, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": false, + "os": "linux", + "pgo": false, + "platform_guess": "linux64-asan", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": true, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/IhxOgusAS9qWBMO_3s6epQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/IhxOgusAS9qWBMO_3s6epQ/artifacts/.get deleted file mode 100644 index 92137097..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/IhxOgusAS9qWBMO_3s6epQ/artifacts/.get +++ /dev/null @@ -1,208 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-11T03:09:35.385Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-11T03:09:35.385Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-11T03:09:35.385Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-11T03:09:35.385Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-11T03:09:35.385Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-11T03:09:35.385Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-11T03:09:35.385Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-11T03:09:35.385Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.385Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-11T03:09:35.385Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.385Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-11T03:09:35.385Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-11T03:09:35.385Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-11T03:09:35.385Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.385Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-11T03:09:35.385Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-11T03:09:35.385Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.385Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-11T03:09:35.385Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-11-11T03:09:35.385Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-11T03:09:35.385Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-11T03:09:35.385Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-11T03:09:35.385Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-11T03:09:35.385Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-11T03:09:35.385Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-11T03:09:35.385Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-11T03:09:35.385Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-11-11T03:09:35.385Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-11T03:09:35.385Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-11T03:09:35.385Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-11T03:09:35.385Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-11T03:09:35.385Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-11T03:09:35.385Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-11T03:09:35.385Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/IhxOgusAS9qWBMO_3s6epQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/IhxOgusAS9qWBMO_3s6epQ/artifacts/public/build/target.json deleted file mode 100644 index 6ecb5ab8..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/IhxOgusAS9qWBMO_3s6epQ/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/workspace/build/src/clang/bin/clang -std=gnu99", - "buildid": "20191112030804", - "cc": "/builds/worker/workspace/build/src/clang/bin/clang -std=gnu99", - "cxx": "/builds/worker/workspace/build/src/clang/bin/clang++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "68.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "68.2.1", - "moz_pkg_platform": "linux-x86_64-asan", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr68", - "moz_source_stamp": "506341a9f6a39813794bca976bf298963eeebf7e", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/IhxOgusAS9qWBMO_3s6epQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/IhxOgusAS9qWBMO_3s6epQ/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 0e729615..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/IhxOgusAS9qWBMO_3s6epQ/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": true, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": false, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": false, - "os": "linux", - "pgo": false, - "platform_guess": "linux64-asan", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk3", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": true, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/IlMYW-5xQeiZXIMUZYTrEg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/IlMYW-5xQeiZXIMUZYTrEg/artifacts/.get new file mode 100644 index 00000000..2eb22884 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/IlMYW-5xQeiZXIMUZYTrEg/artifacts/.get @@ -0,0 +1,250 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.normandy.json", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T12:05:51.976Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/IlMYW-5xQeiZXIMUZYTrEg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/IlMYW-5xQeiZXIMUZYTrEg/artifacts/public/build/target.json new file mode 100644 index 00000000..7a83a026 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/IlMYW-5xQeiZXIMUZYTrEg/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "buildid": "20200727120117", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-x86_64-asan", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "f36e2474d1eb91a657a494f325caa33ef5311f77", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/IlMYW-5xQeiZXIMUZYTrEg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/IlMYW-5xQeiZXIMUZYTrEg/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..e84f4330 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/IlMYW-5xQeiZXIMUZYTrEg/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": true, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": false, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": false, + "os": "linux", + "pgo": false, + "platform_guess": "linux64-asan", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": true, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/IpYg9A4STT6AHiecRaIqPA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/IpYg9A4STT6AHiecRaIqPA/artifacts/.get new file mode 100644 index 00000000..b0ea8752 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/IpYg9A4STT6AHiecRaIqPA/artifacts/.get @@ -0,0 +1,166 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T02:36:00.582Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T02:36:00.582Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T02:36:00.582Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T02:36:00.582Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2020-08-24T02:36:00.582Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2020-08-24T02:36:00.582Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T02:36:00.582Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T02:36:00.582Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T02:36:00.582Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.codesign-entitlements.zip", + "expires": "2020-08-24T02:36:00.582Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2020-08-24T02:36:00.582Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2020-08-24T02:36:00.582Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.dmg", + "expires": "2020-08-24T02:36:00.582Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-24T02:36:00.582Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T02:36:00.582Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T02:36:00.582Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T02:36:00.582Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2020-08-24T02:36:00.582Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T02:36:00.582Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T02:36:00.582Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2020-08-24T02:36:00.582Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T02:36:00.582Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T02:36:00.582Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T02:36:00.582Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T02:36:00.582Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T02:36:00.582Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T02:36:00.582Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/IpYg9A4STT6AHiecRaIqPA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/IpYg9A4STT6AHiecRaIqPA/artifacts/public/build/target.json new file mode 100644 index 00000000..f16ff49d --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/IpYg9A4STT6AHiecRaIqPA/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/checkouts/gecko/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", + "buildid": "20200727023128", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/checkouts/gecko/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -isysroot /builds/worker/checkouts/gecko/MacOSX10.11.sdk -std=gnu++17 --target=x86_64-apple-darwin", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "mac", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "fb75f4882a8c02975bd0baeb767f56de15679e20", + "moz_update_channel": "default", + "target_alias": "x86_64-apple-darwin", + "target_cpu": "x86_64", + "target_os": "darwin", + "target_vendor": "apple" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/IpYg9A4STT6AHiecRaIqPA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/IpYg9A4STT6AHiecRaIqPA/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..2934edae --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/IpYg9A4STT6AHiecRaIqPA/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "mac", + "pgo": false, + "platform_guess": "macosx64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "cocoa", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Isu_XrH0RyqKDl3y9JWukQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/Isu_XrH0RyqKDl3y9JWukQ/artifacts/.get deleted file mode 100644 index 63cff3b6..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Isu_XrH0RyqKDl3y9JWukQ/artifacts/.get +++ /dev/null @@ -1,316 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/geckoview-androidTest.apk", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/geckoview_example.apk", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113095525/geckoview-default-armeabi-v7a-72.0.20191113095525-javadoc.jar", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113095525/geckoview-default-armeabi-v7a-72.0.20191113095525-javadoc.jar.md5", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113095525/geckoview-default-armeabi-v7a-72.0.20191113095525-javadoc.jar.sha1", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113095525/geckoview-default-armeabi-v7a-72.0.20191113095525-sources.jar", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113095525/geckoview-default-armeabi-v7a-72.0.20191113095525-sources.jar.md5", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113095525/geckoview-default-armeabi-v7a-72.0.20191113095525-sources.jar.sha1", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113095525/geckoview-default-armeabi-v7a-72.0.20191113095525.aar", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113095525/geckoview-default-armeabi-v7a-72.0.20191113095525.aar.md5", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113095525/geckoview-default-armeabi-v7a-72.0.20191113095525.aar.sha1", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113095525/geckoview-default-armeabi-v7a-72.0.20191113095525.pom", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113095525/geckoview-default-armeabi-v7a-72.0.20191113095525.pom.md5", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113095525/geckoview-default-armeabi-v7a-72.0.20191113095525.pom.sha1", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/xml" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml.md5", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml.sha1", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T09:57:03.769Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Isu_XrH0RyqKDl3y9JWukQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/Isu_XrH0RyqKDl3y9JWukQ/artifacts/public/build/target.json deleted file mode 100644 index a34f6e00..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Isu_XrH0RyqKDl3y9JWukQ/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=arm-linux-androideabi", - "buildid": "20191113095525", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=arm-linux-androideabi", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ --target=arm-linux-androideabi", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "fennec", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "android-arm", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "2f19e7b646e0a52fa855b75c868f0a3f3a990ad3", - "moz_update_channel": "default", - "target_alias": "arm-unknown-linux-androideabi", - "target_cpu": "arm", - "target_os": "linux-androideabi", - "target_vendor": "unknown" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/Isu_XrH0RyqKDl3y9JWukQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/Isu_XrH0RyqKDl3y9JWukQ/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 7a6006b1..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Isu_XrH0RyqKDl3y9JWukQ/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "allow_legacy_extensions": true, - "android_min_sdk": "16", - "appname": "fennec", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 32, - "buildapp": "mobile/android", - "buildtype_guess": "debug", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": false, - "official": true, - "os": "android", - "pgo": false, - "platform_guess": "android-arm", - "processor": "arm", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": false, - "telemetry": false, - "tests_enabled": true, - "toolkit": "android", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/ItlvG04iRVW2ARNltmKcPg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/ItlvG04iRVW2ARNltmKcPg/artifacts/.get deleted file mode 100644 index 265c24f3..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/ItlvG04iRVW2ARNltmKcPg/artifacts/.get +++ /dev/null @@ -1,214 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-11T22:30:46.472Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-11T22:30:46.472Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-11T22:30:46.472Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-11T22:30:46.472Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-11T22:30:46.472Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-11T22:30:46.472Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-11T22:30:46.472Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-11T22:30:46.472Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-11T22:30:46.472Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-11T22:30:46.472Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-11T22:30:46.472Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.dmg", - "expires": "2020-11-11T22:30:46.472Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-11T22:30:46.472Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-11T22:30:46.472Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-11T22:30:46.472Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-11T22:30:46.472Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-11T22:30:46.472Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-11T22:30:46.472Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-11T22:30:46.472Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-11T22:30:46.472Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-11T22:30:46.472Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-11T22:30:46.472Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-11T22:30:46.472Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-11T22:30:46.472Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-11T22:30:46.472Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-11T22:30:46.472Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-11T22:30:46.472Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-11T22:30:46.472Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-11T22:30:46.472Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-11T22:30:46.472Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-11T22:30:46.472Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-11T22:30:46.472Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-11T22:30:46.472Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-11T22:30:46.472Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-11T22:30:46.472Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/ItlvG04iRVW2ARNltmKcPg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/ItlvG04iRVW2ARNltmKcPg/artifacts/public/build/target.json deleted file mode 100644 index 8e7056bd..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/ItlvG04iRVW2ARNltmKcPg/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/workspace/build/src/clang/bin/clang -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99 --target=x86_64-darwin11", - "buildid": "20191112222920", - "cc": "/builds/worker/workspace/build/src/clang/bin/clang -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99 --target=x86_64-darwin11", - "cxx": "/builds/worker/workspace/build/src/clang/bin/clang++ -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk --target=x86_64-darwin11", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "68.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "68.2.1", - "moz_pkg_platform": "mac", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr68", - "moz_source_stamp": "939a3aec03d304a0a3e3b003e26965c6e95ec211", - "moz_update_channel": "default", - "target_alias": "x86_64-apple-darwin11", - "target_cpu": "x86_64", - "target_os": "darwin11", - "target_vendor": "apple" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/ItlvG04iRVW2ARNltmKcPg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/ItlvG04iRVW2ARNltmKcPg/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index a6122070..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/ItlvG04iRVW2ARNltmKcPg/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": true, - "os": "mac", - "pgo": false, - "platform_guess": "macosx64", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "cocoa", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/ItzGnBzDTgy6kZkOEIpHRA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/ItzGnBzDTgy6kZkOEIpHRA/artifacts/.get deleted file mode 100644 index 4db2520a..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/ItzGnBzDTgy6kZkOEIpHRA/artifacts/.get +++ /dev/null @@ -1,322 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/geckoview-androidTest.apk", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/geckoview_example.apk", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113095525/geckoview-default-x86_64-72.0.20191113095525-javadoc.jar", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113095525/geckoview-default-x86_64-72.0.20191113095525-javadoc.jar.md5", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113095525/geckoview-default-x86_64-72.0.20191113095525-javadoc.jar.sha1", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113095525/geckoview-default-x86_64-72.0.20191113095525-sources.jar", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113095525/geckoview-default-x86_64-72.0.20191113095525-sources.jar.md5", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113095525/geckoview-default-x86_64-72.0.20191113095525-sources.jar.sha1", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113095525/geckoview-default-x86_64-72.0.20191113095525.aar", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113095525/geckoview-default-x86_64-72.0.20191113095525.aar.md5", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113095525/geckoview-default-x86_64-72.0.20191113095525.aar.sha1", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113095525/geckoview-default-x86_64-72.0.20191113095525.pom", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113095525/geckoview-default-x86_64-72.0.20191113095525.pom.md5", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113095525/geckoview-default-x86_64-72.0.20191113095525.pom.sha1", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/maven-metadata.xml", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/xml" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/maven-metadata.xml.md5", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/maven-metadata.xml.sha1", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T09:57:05.212Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/ItzGnBzDTgy6kZkOEIpHRA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/ItzGnBzDTgy6kZkOEIpHRA/artifacts/public/build/target.json deleted file mode 100644 index 6f1c7d81..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/ItzGnBzDTgy6kZkOEIpHRA/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=x86_64-linux-android", - "buildid": "20191113095525", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=x86_64-linux-android", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ --target=x86_64-linux-android", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "fennec", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "android-x86_64", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "2f19e7b646e0a52fa855b75c868f0a3f3a990ad3", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-android", - "target_cpu": "x86_64", - "target_os": "linux-android", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/ItzGnBzDTgy6kZkOEIpHRA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/ItzGnBzDTgy6kZkOEIpHRA/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 29a47812..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/ItzGnBzDTgy6kZkOEIpHRA/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "allow_legacy_extensions": true, - "android_min_sdk": "21", - "appname": "fennec", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "mobile/android", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": false, - "official": true, - "os": "android", - "pgo": false, - "platform_guess": "android-arm", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": false, - "telemetry": false, - "tests_enabled": true, - "toolkit": "android", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/J41SVE-sRF21MAiXRpXOgg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/J41SVE-sRF21MAiXRpXOgg/artifacts/.get deleted file mode 100644 index 75e242b9..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/J41SVE-sRF21MAiXRpXOgg/artifacts/.get +++ /dev/null @@ -1,250 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.zip", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.zip", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.zip", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.zip", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.zip", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.zip", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.stylo-bindings.zip", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.zip", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.zip", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/logs/log_critical.log", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_debug.log", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_error.log", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_fatal.log", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_info.log", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_raw.log", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_warning.log", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "text/plain" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/J41SVE-sRF21MAiXRpXOgg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/J41SVE-sRF21MAiXRpXOgg/artifacts/public/build/target.json deleted file mode 100644 index b50a4a26..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/J41SVE-sRF21MAiXRpXOgg/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "$(CC)", - "buildid": "20191014131614", - "cc": "/builds/worker/workspace/build/src/gcc/bin/gcc -std=gnu99", - "cxx": "/builds/worker/workspace/build/src/gcc/bin/g++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "60.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "60.9.1", - "moz_pkg_platform": "linux-x86_64", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr60", - "moz_source_stamp": "e67641c2e4ccd1fe2d4cd522b6575adec838697a", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/J41SVE-sRF21MAiXRpXOgg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/J41SVE-sRF21MAiXRpXOgg/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 0272f9ff..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/J41SVE-sRF21MAiXRpXOgg/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "addon_signing": true, - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": true, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk3", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/JDB9_hHBSWKG0rkqckUUoA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/JDB9_hHBSWKG0rkqckUUoA/artifacts/.get deleted file mode 100644 index d30a2888..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/JDB9_hHBSWKG0rkqckUUoA/artifacts/.get +++ /dev/null @@ -1,250 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "text/html; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar.exe", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff.exe", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/install/sea/target.installer.exe", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/setup.exe", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.zip", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T00:03:46.969Z", - "contentType": "application/octet-stream" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/JDB9_hHBSWKG0rkqckUUoA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/JDB9_hHBSWKG0rkqckUUoA/artifacts/public/build/target.json deleted file mode 100644 index de664622..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/JDB9_hHBSWKG0rkqckUUoA/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "z:/build/build/src/vs2017_15.9.6/VC/bin/HostX64/arm64/armasm64.exe", - "buildid": "20191113000048", - "cc": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe -Xclang -std=gnu99 --target=aarch64-windows-msvc", - "cxx": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe --target=aarch64-windows-msvc", - "host_alias": "x86_64-pc-mingw32", - "host_cpu": "x86_64", - "host_os": "mingw32", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "win64", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "77b18bc38fcfb26cbd1df38bc67ec840399a87e0", - "moz_update_channel": "default", - "target_alias": "aarch64-windows-mingw32", - "target_cpu": "aarch64", - "target_os": "mingw32", - "target_vendor": "windows" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/JDB9_hHBSWKG0rkqckUUoA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/JDB9_hHBSWKG0rkqckUUoA/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index ef64d76d..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/JDB9_hHBSWKG0rkqckUUoA/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": ".exe", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "cc_type": "clang-cl", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "z:/build/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "win", - "pgo": false, - "platform_guess": "win64", - "processor": "aarch64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "windows", - "topsrcdir": "z:/build/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/JKccTU-bT2WTICi54ghK_Q/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/JKccTU-bT2WTICi54ghK_Q/artifacts/.get new file mode 100644 index 00000000..a69ffb71 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/JKccTU-bT2WTICi54ghK_Q/artifacts/.get @@ -0,0 +1,166 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T09:55:01.415Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T09:55:01.415Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T09:55:01.415Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T09:55:01.415Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2021-07-27T09:55:01.415Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2021-07-27T09:55:01.415Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T09:55:01.415Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T09:55:01.415Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T09:55:01.415Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.codesign-entitlements.zip", + "expires": "2021-07-27T09:55:01.415Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2021-07-27T09:55:01.415Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T09:55:01.415Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.dmg", + "expires": "2021-07-27T09:55:01.415Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T09:55:01.415Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T09:55:01.415Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T09:55:01.415Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T09:55:01.415Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T09:55:01.415Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T09:55:01.415Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T09:55:01.415Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2021-07-27T09:55:01.415Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T09:55:01.415Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T09:55:01.415Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T09:55:01.415Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T09:55:01.415Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T09:55:01.415Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T09:55:01.415Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/JKccTU-bT2WTICi54ghK_Q/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/JKccTU-bT2WTICi54ghK_Q/artifacts/public/build/target.json new file mode 100644 index 00000000..100d752c --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/JKccTU-bT2WTICi54ghK_Q/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/checkouts/gecko/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", + "buildid": "20200727095125", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/checkouts/gecko/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -isysroot /builds/worker/checkouts/gecko/MacOSX10.11.sdk -std=gnu++17 --target=x86_64-apple-darwin", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "mac", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "798bdad605b985a71cd204a56bb816dea503d432", + "moz_update_channel": "default", + "target_alias": "x86_64-apple-darwin", + "target_cpu": "x86_64", + "target_os": "darwin", + "target_vendor": "apple" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/JKccTU-bT2WTICi54ghK_Q/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/JKccTU-bT2WTICi54ghK_Q/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..2934edae --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/JKccTU-bT2WTICi54ghK_Q/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "mac", + "pgo": false, + "platform_guess": "macosx64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "cocoa", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/JQIs7fqyQYKsikwVrCanzw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/JQIs7fqyQYKsikwVrCanzw/artifacts/.get deleted file mode 100644 index 3edbd889..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/JQIs7fqyQYKsikwVrCanzw/artifacts/.get +++ /dev/null @@ -1,232 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T04:51:50.348Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/JQIs7fqyQYKsikwVrCanzw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/JQIs7fqyQYKsikwVrCanzw/artifacts/public/build/target.json deleted file mode 100644 index 3c1296cd..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/JQIs7fqyQYKsikwVrCanzw/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/gcc/bin/gcc -std=gnu99", - "buildid": "20191113044959", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/gcc/bin/gcc -std=gnu99", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/gcc/bin/g++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "linux-x86_64-fuzzing", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "48a708577712a2eb1b19aafcda25b2aa0e607629", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/JQIs7fqyQYKsikwVrCanzw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/JQIs7fqyQYKsikwVrCanzw/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index dc3a3c2e..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/JQIs7fqyQYKsikwVrCanzw/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "cc_type": "gcc", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": false, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/JS86DP29SAee1cmG_cHCfQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/JS86DP29SAee1cmG_cHCfQ/artifacts/.get new file mode 100644 index 00000000..88e50c7b --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/JS86DP29SAee1cmG_cHCfQ/artifacts/.get @@ -0,0 +1,250 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.normandy.json", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T03:36:23.994Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/JS86DP29SAee1cmG_cHCfQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/JS86DP29SAee1cmG_cHCfQ/artifacts/public/build/target.json new file mode 100644 index 00000000..e733c05c --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/JS86DP29SAee1cmG_cHCfQ/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "buildid": "20200727033000", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-x86_64-asan", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "56082fc4acfacba40993e47ef8302993c59e264e", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/JS86DP29SAee1cmG_cHCfQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/JS86DP29SAee1cmG_cHCfQ/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..e84f4330 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/JS86DP29SAee1cmG_cHCfQ/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": true, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": false, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": false, + "os": "linux", + "pgo": false, + "platform_guess": "linux64-asan", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": true, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/JW5d2KhQR_2Uj-6axFv0-A/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/JW5d2KhQR_2Uj-6axFv0-A/artifacts/.get new file mode 100644 index 00000000..eb9a6788 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/JW5d2KhQR_2Uj-6axFv0-A/artifacts/.get @@ -0,0 +1,154 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T03:36:23.880Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T03:36:23.880Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T03:36:23.880Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T03:36:23.880Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2021-07-27T03:36:23.880Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2021-07-27T03:36:23.880Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T03:36:23.880Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T03:36:23.880Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T03:36:23.880Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.codesign-entitlements.zip", + "expires": "2021-07-27T03:36:23.880Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.dmg", + "expires": "2021-07-27T03:36:23.880Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T03:36:23.880Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T03:36:23.880Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T03:36:23.880Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T03:36:23.880Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T03:36:23.880Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T03:36:23.880Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T03:36:23.880Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2021-07-27T03:36:23.880Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T03:36:23.880Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T03:36:23.880Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T03:36:23.880Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T03:36:23.880Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T03:36:23.880Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T03:36:23.880Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/JW5d2KhQR_2Uj-6axFv0-A/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/JW5d2KhQR_2Uj-6axFv0-A/artifacts/public/build/target.json new file mode 100644 index 00000000..343e48ca --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/JW5d2KhQR_2Uj-6axFv0-A/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/checkouts/gecko/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", + "buildid": "20200727033000", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/checkouts/gecko/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -isysroot /builds/worker/checkouts/gecko/MacOSX10.11.sdk -std=gnu++17 --target=x86_64-apple-darwin", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "mac-asan", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "56082fc4acfacba40993e47ef8302993c59e264e", + "moz_update_channel": "default", + "target_alias": "x86_64-apple-darwin", + "target_cpu": "x86_64", + "target_os": "darwin", + "target_vendor": "apple" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/JW5d2KhQR_2Uj-6axFv0-A/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/JW5d2KhQR_2Uj-6axFv0-A/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..02ffb7a8 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/JW5d2KhQR_2Uj-6axFv0-A/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": true, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": false, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": false, + "os": "mac", + "pgo": false, + "platform_guess": "macosx64-asan", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "cocoa", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/JZdGoL72RzGKEkSUmcOikA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/JZdGoL72RzGKEkSUmcOikA/artifacts/.get deleted file mode 100644 index c2d42ff5..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/JZdGoL72RzGKEkSUmcOikA/artifacts/.get +++ /dev/null @@ -1,310 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/geckoview-androidTest.apk", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/geckoview_example.apk", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113115444/geckoview-default-x86-72.0.20191113115444-javadoc.jar", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113115444/geckoview-default-x86-72.0.20191113115444-javadoc.jar.md5", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113115444/geckoview-default-x86-72.0.20191113115444-javadoc.jar.sha1", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113115444/geckoview-default-x86-72.0.20191113115444-sources.jar", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113115444/geckoview-default-x86-72.0.20191113115444-sources.jar.md5", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113115444/geckoview-default-x86-72.0.20191113115444-sources.jar.sha1", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113115444/geckoview-default-x86-72.0.20191113115444.aar", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113115444/geckoview-default-x86-72.0.20191113115444.aar.md5", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113115444/geckoview-default-x86-72.0.20191113115444.aar.sha1", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113115444/geckoview-default-x86-72.0.20191113115444.pom", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113115444/geckoview-default-x86-72.0.20191113115444.pom.md5", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113115444/geckoview-default-x86-72.0.20191113115444.pom.sha1", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/xml" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml.md5", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml.sha1", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T11:59:58.281Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/JZdGoL72RzGKEkSUmcOikA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/JZdGoL72RzGKEkSUmcOikA/artifacts/public/build/target.json deleted file mode 100644 index d39ba20e..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/JZdGoL72RzGKEkSUmcOikA/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=i686-linux-android", - "buildid": "20191113115444", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=i686-linux-android", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ --target=i686-linux-android", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "fennec", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "android-i686-fuzzing", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "1669fa43c9edb5584cda1c8b2250a5beb3bc0c71", - "moz_update_channel": "default", - "target_alias": "i686-pc-linux-android", - "target_cpu": "i686", - "target_os": "linux-android", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/JZdGoL72RzGKEkSUmcOikA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/JZdGoL72RzGKEkSUmcOikA/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index e394ea55..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/JZdGoL72RzGKEkSUmcOikA/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "allow_legacy_extensions": true, - "android_min_sdk": "16", - "appname": "fennec", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 32, - "buildapp": "mobile/android", - "buildtype_guess": "debug", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": false, - "official": true, - "os": "android", - "pgo": false, - "platform_guess": "android-x86", - "processor": "x86", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": false, - "telemetry": false, - "tests_enabled": true, - "toolkit": "android", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/JaDq3URwS9CfroMX_eiElw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/JaDq3URwS9CfroMX_eiElw/artifacts/.get deleted file mode 100644 index c7ca86ef..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/JaDq3URwS9CfroMX_eiElw/artifacts/.get +++ /dev/null @@ -1,238 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T00:03:46.881Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/JaDq3URwS9CfroMX_eiElw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/JaDq3URwS9CfroMX_eiElw/artifacts/public/build/target.json deleted file mode 100644 index 6e9efaba..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/JaDq3URwS9CfroMX_eiElw/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "buildid": "20191113000048", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "linux-x86_64", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "77b18bc38fcfb26cbd1df38bc67ec840399a87e0", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/JaDq3URwS9CfroMX_eiElw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/JaDq3URwS9CfroMX_eiElw/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index b4ea19e5..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/JaDq3URwS9CfroMX_eiElw/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/JoB5nQ51SbKHAAAnXSqC9A/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/JoB5nQ51SbKHAAAnXSqC9A/artifacts/.get deleted file mode 100644 index f114931e..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/JoB5nQ51SbKHAAAnXSqC9A/artifacts/.get +++ /dev/null @@ -1,220 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-11T22:30:47.309Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-11T22:30:47.309Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-11T22:30:47.309Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-11T22:30:47.309Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-11T22:30:47.309Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-11T22:30:47.309Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-11T22:30:47.309Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-11T22:30:47.309Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-11T22:30:47.309Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-11T22:30:47.309Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-11T22:30:47.309Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-11T22:30:47.309Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-11T22:30:47.309Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-11T22:30:47.309Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-11T22:30:47.309Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-11T22:30:47.309Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-11T22:30:47.309Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-11T22:30:47.309Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-11T22:30:47.309Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-11T22:30:47.309Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-11T22:30:47.309Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-11-11T22:30:47.309Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-11T22:30:47.309Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-11T22:30:47.309Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-11T22:30:47.309Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-11T22:30:47.309Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-11T22:30:47.309Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-11T22:30:47.309Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-11T22:30:47.309Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-11-11T22:30:47.309Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-11T22:30:47.309Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-11T22:30:47.309Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-11T22:30:47.309Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-11T22:30:47.309Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-11T22:30:47.309Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-11T22:30:47.309Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/JoB5nQ51SbKHAAAnXSqC9A/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/JoB5nQ51SbKHAAAnXSqC9A/artifacts/public/build/target.json deleted file mode 100644 index ca3cc310..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/JoB5nQ51SbKHAAAnXSqC9A/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/workspace/build/src/clang/bin/clang -std=gnu99 -m32", - "buildid": "20191112222920", - "cc": "/builds/worker/workspace/build/src/clang/bin/clang -std=gnu99 -m32", - "cxx": "/builds/worker/workspace/build/src/clang/bin/clang++ -m32", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "68.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "68.2.1", - "moz_pkg_platform": "linux-i686", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr68", - "moz_source_stamp": "939a3aec03d304a0a3e3b003e26965c6e95ec211", - "moz_update_channel": "default", - "target_alias": "i686-pc-linux-gnu", - "target_cpu": "i686", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/JoB5nQ51SbKHAAAnXSqC9A/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/JoB5nQ51SbKHAAAnXSqC9A/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index bd22ce6e..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/JoB5nQ51SbKHAAAnXSqC9A/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 32, - "buildapp": "browser", - "buildtype_guess": "debug", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": true, - "os": "linux", - "pgo": false, - "platform_guess": "linux", - "processor": "x86", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk3", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Jq_Sun_rSw6qzGEFDcnbnQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/Jq_Sun_rSw6qzGEFDcnbnQ/artifacts/.get deleted file mode 100644 index 52ad1dd2..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Jq_Sun_rSw6qzGEFDcnbnQ/artifacts/.get +++ /dev/null @@ -1,310 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/geckoview-androidTest.apk", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/geckoview_example.apk", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113044959/geckoview-default-x86-72.0.20191113044959-javadoc.jar", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113044959/geckoview-default-x86-72.0.20191113044959-javadoc.jar.md5", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113044959/geckoview-default-x86-72.0.20191113044959-javadoc.jar.sha1", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113044959/geckoview-default-x86-72.0.20191113044959-sources.jar", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113044959/geckoview-default-x86-72.0.20191113044959-sources.jar.md5", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113044959/geckoview-default-x86-72.0.20191113044959-sources.jar.sha1", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113044959/geckoview-default-x86-72.0.20191113044959.aar", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113044959/geckoview-default-x86-72.0.20191113044959.aar.md5", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113044959/geckoview-default-x86-72.0.20191113044959.aar.sha1", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113044959/geckoview-default-x86-72.0.20191113044959.pom", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113044959/geckoview-default-x86-72.0.20191113044959.pom.md5", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113044959/geckoview-default-x86-72.0.20191113044959.pom.sha1", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/xml" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml.md5", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml.sha1", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T04:51:49.509Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Jq_Sun_rSw6qzGEFDcnbnQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/Jq_Sun_rSw6qzGEFDcnbnQ/artifacts/public/build/target.json deleted file mode 100644 index 3b612936..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Jq_Sun_rSw6qzGEFDcnbnQ/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=i686-linux-android", - "buildid": "20191113044959", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=i686-linux-android", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ --target=i686-linux-android", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "fennec", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "android-i686-fuzzing", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "48a708577712a2eb1b19aafcda25b2aa0e607629", - "moz_update_channel": "default", - "target_alias": "i686-pc-linux-android", - "target_cpu": "i686", - "target_os": "linux-android", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/Jq_Sun_rSw6qzGEFDcnbnQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/Jq_Sun_rSw6qzGEFDcnbnQ/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index e394ea55..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Jq_Sun_rSw6qzGEFDcnbnQ/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "allow_legacy_extensions": true, - "android_min_sdk": "16", - "appname": "fennec", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 32, - "buildapp": "mobile/android", - "buildtype_guess": "debug", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": false, - "official": true, - "os": "android", - "pgo": false, - "platform_guess": "android-x86", - "processor": "x86", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": false, - "telemetry": false, - "tests_enabled": true, - "toolkit": "android", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/JtJAAuQNQbK9YlQpOiqNiw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/JtJAAuQNQbK9YlQpOiqNiw/artifacts/.get new file mode 100644 index 00000000..5c84825e --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/JtJAAuQNQbK9YlQpOiqNiw/artifacts/.get @@ -0,0 +1,154 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T08:59:09.086Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T08:59:09.086Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T08:59:09.086Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T08:59:09.086Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2020-08-24T08:59:09.086Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2020-08-24T08:59:09.086Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T08:59:09.086Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T08:59:09.086Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T08:59:09.086Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.codesign-entitlements.zip", + "expires": "2020-08-24T08:59:09.086Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.dmg", + "expires": "2020-08-24T08:59:09.086Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-24T08:59:09.086Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T08:59:09.086Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T08:59:09.086Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T08:59:09.086Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2020-08-24T08:59:09.086Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T08:59:09.086Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T08:59:09.086Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2020-08-24T08:59:09.086Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T08:59:09.086Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T08:59:09.086Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T08:59:09.086Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T08:59:09.086Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T08:59:09.086Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T08:59:09.086Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/JtJAAuQNQbK9YlQpOiqNiw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/JtJAAuQNQbK9YlQpOiqNiw/artifacts/public/build/target.json new file mode 100644 index 00000000..756c3741 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/JtJAAuQNQbK9YlQpOiqNiw/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/checkouts/gecko/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", + "buildid": "20200727085208", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/checkouts/gecko/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -isysroot /builds/worker/checkouts/gecko/MacOSX10.11.sdk -std=gnu++17 --target=x86_64-apple-darwin", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "mac-asan", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "6e604e8ff32ade90bdee21b40366c365039ec7f2", + "moz_update_channel": "default", + "target_alias": "x86_64-apple-darwin", + "target_cpu": "x86_64", + "target_os": "darwin", + "target_vendor": "apple" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/JtJAAuQNQbK9YlQpOiqNiw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/JtJAAuQNQbK9YlQpOiqNiw/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..02ffb7a8 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/JtJAAuQNQbK9YlQpOiqNiw/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": true, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": false, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": false, + "os": "mac", + "pgo": false, + "platform_guess": "macosx64-asan", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "cocoa", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/JxODxjaPQRCr8T_x3dLDYA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/JxODxjaPQRCr8T_x3dLDYA/artifacts/.get new file mode 100644 index 00000000..11c93ac3 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/JxODxjaPQRCr8T_x3dLDYA/artifacts/.get @@ -0,0 +1,256 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/install/sea/target.installer.exe", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/setup.exe", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.zip", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T03:36:23.265Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/JxODxjaPQRCr8T_x3dLDYA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/JxODxjaPQRCr8T_x3dLDYA/artifacts/public/build/target.json new file mode 100644 index 00000000..90f9d82c --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/JxODxjaPQRCr8T_x3dLDYA/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/checkouts/gecko/vs2017_15.8.4/VC/bin/Hostx64/x64/ml64.exe", + "buildid": "20200727033000", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang-cl -Xclang -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang-cl -Xclang -std=c++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "win64", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "56082fc4acfacba40993e47ef8302993c59e264e", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-mingw32", + "target_cpu": "x86_64", + "target_os": "mingw32", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/JxODxjaPQRCr8T_x3dLDYA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/JxODxjaPQRCr8T_x3dLDYA/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..7471beb0 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/JxODxjaPQRCr8T_x3dLDYA/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": ".exe", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang-cl", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "win", + "pgo": false, + "platform_guess": "win64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "windows", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/K6Wvd0BMR3OLSkjkagXTuQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/K6Wvd0BMR3OLSkjkagXTuQ/artifacts/.get new file mode 100644 index 00000000..99175148 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/K6Wvd0BMR3OLSkjkagXTuQ/artifacts/.get @@ -0,0 +1,256 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/install/sea/target.installer.exe", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/setup.exe", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.zip", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T03:36:23.284Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/K6Wvd0BMR3OLSkjkagXTuQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/K6Wvd0BMR3OLSkjkagXTuQ/artifacts/public/build/target.json new file mode 100644 index 00000000..90f9d82c --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/K6Wvd0BMR3OLSkjkagXTuQ/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/checkouts/gecko/vs2017_15.8.4/VC/bin/Hostx64/x64/ml64.exe", + "buildid": "20200727033000", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang-cl -Xclang -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang-cl -Xclang -std=c++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "win64", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "56082fc4acfacba40993e47ef8302993c59e264e", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-mingw32", + "target_cpu": "x86_64", + "target_os": "mingw32", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/K6Wvd0BMR3OLSkjkagXTuQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/K6Wvd0BMR3OLSkjkagXTuQ/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..cb1a38fa --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/K6Wvd0BMR3OLSkjkagXTuQ/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": ".exe", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "debug", + "cc_type": "clang-cl", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": true, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "win", + "pgo": false, + "platform_guess": "win64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "windows", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/K6zaJiAfQIimDlQXrnhQLg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/K6zaJiAfQIimDlQXrnhQLg/artifacts/.get deleted file mode 100644 index b3a7accf..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/K6zaJiAfQIimDlQXrnhQLg/artifacts/.get +++ /dev/null @@ -1,250 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "text/html; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar.exe", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff.exe", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/install/sea/target.installer.exe", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/setup.exe", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.zip", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T09:57:06.593Z", - "contentType": "application/octet-stream" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/K6zaJiAfQIimDlQXrnhQLg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/K6zaJiAfQIimDlQXrnhQLg/artifacts/public/build/target.json deleted file mode 100644 index 667820ce..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/K6zaJiAfQIimDlQXrnhQLg/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "z:/build/build/src/vs2017_15.9.6/VC/bin/HostX64/arm64/armasm64.exe", - "buildid": "20191113095525", - "cc": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe -Xclang -std=gnu99 --target=aarch64-windows-msvc", - "cxx": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe --target=aarch64-windows-msvc", - "host_alias": "x86_64-pc-mingw32", - "host_cpu": "x86_64", - "host_os": "mingw32", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "win64", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "2f19e7b646e0a52fa855b75c868f0a3f3a990ad3", - "moz_update_channel": "default", - "target_alias": "aarch64-windows-mingw32", - "target_cpu": "aarch64", - "target_os": "mingw32", - "target_vendor": "windows" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/K6zaJiAfQIimDlQXrnhQLg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/K6zaJiAfQIimDlQXrnhQLg/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index f144abc4..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/K6zaJiAfQIimDlQXrnhQLg/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": ".exe", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang-cl", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "z:/build/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "win", - "pgo": false, - "platform_guess": "win64", - "processor": "aarch64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "windows", - "topsrcdir": "z:/build/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/KDqDJexDRIOpokdZHOOKPg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/KDqDJexDRIOpokdZHOOKPg/artifacts/.get new file mode 100644 index 00000000..eb9cc38d --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/KDqDJexDRIOpokdZHOOKPg/artifacts/.get @@ -0,0 +1,160 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T08:59:09.076Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T08:59:09.076Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T08:59:09.076Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T08:59:09.076Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/install/sea/target.installer.exe", + "expires": "2020-08-24T08:59:09.076Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T08:59:09.076Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T08:59:09.076Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/setup.exe", + "expires": "2020-08-24T08:59:09.076Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T08:59:09.076Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2020-08-24T08:59:09.076Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2020-08-24T08:59:09.076Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-24T08:59:09.076Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T08:59:09.076Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T08:59:09.076Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T08:59:09.076Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2020-08-24T08:59:09.076Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T08:59:09.076Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T08:59:09.076Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.zip", + "expires": "2020-08-24T08:59:09.076Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2020-08-24T08:59:09.076Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T08:59:09.076Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T08:59:09.076Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T08:59:09.076Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T08:59:09.076Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T08:59:09.076Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T08:59:09.076Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/KDqDJexDRIOpokdZHOOKPg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/KDqDJexDRIOpokdZHOOKPg/artifacts/public/build/target.json new file mode 100644 index 00000000..a9913b7b --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/KDqDJexDRIOpokdZHOOKPg/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/checkouts/gecko/vs2017_15.9.6/VC/bin/Hostx64/arm64/armasm64.exe", + "buildid": "20200727085208", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang-cl -Xclang -std=gnu99 --target=aarch64-windows-msvc", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang-cl -Xclang -std=c++17 --target=aarch64-windows-msvc", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "win64-aarch64", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "6e604e8ff32ade90bdee21b40366c365039ec7f2", + "moz_update_channel": "default", + "target_alias": "aarch64-windows-mingw32", + "target_cpu": "aarch64", + "target_os": "mingw32", + "target_vendor": "windows" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/KDqDJexDRIOpokdZHOOKPg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/KDqDJexDRIOpokdZHOOKPg/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..eb559a4c --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/KDqDJexDRIOpokdZHOOKPg/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": ".exe", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "debug", + "cc_type": "clang-cl", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": true, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "win", + "pgo": false, + "platform_guess": "win64", + "processor": "aarch64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "windows", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/KGVgyL2ORX6PK_zvEUMFeQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/KGVgyL2ORX6PK_zvEUMFeQ/artifacts/.get deleted file mode 100644 index 3e2ffe8a..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/KGVgyL2ORX6PK_zvEUMFeQ/artifacts/.get +++ /dev/null @@ -1,316 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/geckoview-androidTest.apk", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/geckoview_example.apk", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113044959/geckoview-default-armeabi-v7a-72.0.20191113044959-javadoc.jar", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113044959/geckoview-default-armeabi-v7a-72.0.20191113044959-javadoc.jar.md5", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113044959/geckoview-default-armeabi-v7a-72.0.20191113044959-javadoc.jar.sha1", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113044959/geckoview-default-armeabi-v7a-72.0.20191113044959-sources.jar", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113044959/geckoview-default-armeabi-v7a-72.0.20191113044959-sources.jar.md5", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113044959/geckoview-default-armeabi-v7a-72.0.20191113044959-sources.jar.sha1", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113044959/geckoview-default-armeabi-v7a-72.0.20191113044959.aar", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113044959/geckoview-default-armeabi-v7a-72.0.20191113044959.aar.md5", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113044959/geckoview-default-armeabi-v7a-72.0.20191113044959.aar.sha1", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113044959/geckoview-default-armeabi-v7a-72.0.20191113044959.pom", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113044959/geckoview-default-armeabi-v7a-72.0.20191113044959.pom.md5", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113044959/geckoview-default-armeabi-v7a-72.0.20191113044959.pom.sha1", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/xml" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml.md5", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml.sha1", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T04:51:48.639Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/KGVgyL2ORX6PK_zvEUMFeQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/KGVgyL2ORX6PK_zvEUMFeQ/artifacts/public/build/target.json deleted file mode 100644 index 015b51c9..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/KGVgyL2ORX6PK_zvEUMFeQ/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=arm-linux-androideabi", - "buildid": "20191113044959", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=arm-linux-androideabi", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ --target=arm-linux-androideabi", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "fennec", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "android-arm", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "48a708577712a2eb1b19aafcda25b2aa0e607629", - "moz_update_channel": "default", - "target_alias": "arm-unknown-linux-androideabi", - "target_cpu": "arm", - "target_os": "linux-androideabi", - "target_vendor": "unknown" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/KGVgyL2ORX6PK_zvEUMFeQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/KGVgyL2ORX6PK_zvEUMFeQ/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 7a6006b1..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/KGVgyL2ORX6PK_zvEUMFeQ/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "allow_legacy_extensions": true, - "android_min_sdk": "16", - "appname": "fennec", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 32, - "buildapp": "mobile/android", - "buildtype_guess": "debug", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": false, - "official": true, - "os": "android", - "pgo": false, - "platform_guess": "android-arm", - "processor": "arm", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": false, - "telemetry": false, - "tests_enabled": true, - "toolkit": "android", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/KGtCLXc_SWWPwmWRugEdOw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/KGtCLXc_SWWPwmWRugEdOw/artifacts/.get new file mode 100644 index 00000000..9f1cd77c --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/KGtCLXc_SWWPwmWRugEdOw/artifacts/.get @@ -0,0 +1,148 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T04:45:12.168Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T04:45:12.168Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T04:45:12.168Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T04:45:12.168Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2021-07-27T04:45:12.168Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2021-07-27T04:45:12.168Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T04:45:12.168Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T04:45:12.168Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T04:45:12.168Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2021-07-27T04:45:12.168Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T04:45:12.168Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T04:45:12.168Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T04:45:12.168Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T04:45:12.168Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T04:45:12.168Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T04:45:12.168Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T04:45:12.168Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.normandy.json", + "expires": "2021-07-27T04:45:12.168Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2021-07-27T04:45:12.168Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T04:45:12.168Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2021-07-27T04:45:12.168Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T04:45:12.168Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T04:45:12.168Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T04:45:12.168Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/KGtCLXc_SWWPwmWRugEdOw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/KGtCLXc_SWWPwmWRugEdOw/artifacts/public/build/target.json new file mode 100644 index 00000000..6a390297 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/KGtCLXc_SWWPwmWRugEdOw/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "buildid": "20200727033000", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-x86_64", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "56082fc4acfacba40993e47ef8302993c59e264e", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/KGtCLXc_SWWPwmWRugEdOw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/KGtCLXc_SWWPwmWRugEdOw/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..d3c93a6a --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/KGtCLXc_SWWPwmWRugEdOw/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "linux", + "pgo": false, + "platform_guess": "linux64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/KJsHof7yR7aA9n1-raBZ1w/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/KJsHof7yR7aA9n1-raBZ1w/artifacts/.get deleted file mode 100644 index 6b825d95..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/KJsHof7yR7aA9n1-raBZ1w/artifacts/.get +++ /dev/null @@ -1,226 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T09:57:03.725Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T09:57:03.725Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T09:57:03.725Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T09:57:03.725Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T09:57:03.725Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-12T09:57:03.725Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T09:57:03.725Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T09:57:03.725Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T09:57:03.725Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T09:57:03.725Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T09:57:03.725Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T09:57:03.725Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T09:57:03.725Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T09:57:03.725Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-12T09:57:03.725Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T09:57:03.725Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T09:57:03.725Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-12T09:57:03.725Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T09:57:03.725Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T09:57:03.725Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T09:57:03.725Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T09:57:03.725Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T09:57:03.725Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-11-12T09:57:03.725Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T09:57:03.725Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T09:57:03.725Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T09:57:03.725Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T09:57:03.725Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T09:57:03.725Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T09:57:03.725Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-11-12T09:57:03.725Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T09:57:03.725Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T09:57:03.725Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T09:57:03.725Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T09:57:03.725Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T09:57:03.725Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T09:57:03.725Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/KJsHof7yR7aA9n1-raBZ1w/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/KJsHof7yR7aA9n1-raBZ1w/artifacts/public/build/target.json deleted file mode 100644 index 10df5076..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/KJsHof7yR7aA9n1-raBZ1w/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "buildid": "20191113095525", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "linux-x86_64-asan", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "2f19e7b646e0a52fa855b75c868f0a3f3a990ad3", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/KJsHof7yR7aA9n1-raBZ1w/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/KJsHof7yR7aA9n1-raBZ1w/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 3162c70d..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/KJsHof7yR7aA9n1-raBZ1w/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": true, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": false, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": false, - "os": "linux", - "pgo": false, - "platform_guess": "linux64-asan", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": true, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/KLnhSxFdQeqwWMo002yN3g/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/KLnhSxFdQeqwWMo002yN3g/artifacts/.get deleted file mode 100644 index eaabb4bb..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/KLnhSxFdQeqwWMo002yN3g/artifacts/.get +++ /dev/null @@ -1,214 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-11T22:30:46.501Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-11T22:30:46.501Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-11T22:30:46.501Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-11T22:30:46.501Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-11T22:30:46.501Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-11T22:30:46.501Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-11T22:30:46.501Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-11T22:30:46.501Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-11T22:30:46.501Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-11T22:30:46.501Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-11T22:30:46.501Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-11T22:30:46.501Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-11T22:30:46.501Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-11T22:30:46.501Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-11T22:30:46.501Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-11T22:30:46.501Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-11T22:30:46.501Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-11T22:30:46.501Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-11T22:30:46.501Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-11T22:30:46.501Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-11-11T22:30:46.501Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-11T22:30:46.501Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-11T22:30:46.501Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-11T22:30:46.501Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-11T22:30:46.501Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-11T22:30:46.501Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-11T22:30:46.501Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-11T22:30:46.501Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-11-11T22:30:46.501Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-11T22:30:46.501Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-11T22:30:46.501Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-11T22:30:46.501Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-11T22:30:46.501Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-11T22:30:46.501Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-11T22:30:46.501Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/KLnhSxFdQeqwWMo002yN3g/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/KLnhSxFdQeqwWMo002yN3g/artifacts/public/build/target.json deleted file mode 100644 index 84d587d6..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/KLnhSxFdQeqwWMo002yN3g/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/workspace/build/src/gcc/bin/gcc -std=gnu99", - "buildid": "20191112222920", - "cc": "/builds/worker/workspace/build/src/gcc/bin/gcc -std=gnu99", - "cxx": "/builds/worker/workspace/build/src/gcc/bin/g++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "68.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "68.2.1", - "moz_pkg_platform": "linux-x86_64-fuzzing", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr68", - "moz_source_stamp": "939a3aec03d304a0a3e3b003e26965c6e95ec211", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/KLnhSxFdQeqwWMo002yN3g/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/KLnhSxFdQeqwWMo002yN3g/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 0302af10..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/KLnhSxFdQeqwWMo002yN3g/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "cc_type": "gcc", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": false, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk3", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Ke5DPkkgT4WoVrLyWYoXvg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/Ke5DPkkgT4WoVrLyWYoXvg/artifacts/.get deleted file mode 100644 index 61154bc2..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Ke5DPkkgT4WoVrLyWYoXvg/artifacts/.get +++ /dev/null @@ -1,226 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T00:03:46.921Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T00:03:46.921Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T00:03:46.921Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T00:03:46.921Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2019-12-11T00:03:46.921Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2019-12-11T00:03:46.921Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T00:03:46.921Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T00:03:46.921Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T00:03:46.921Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T00:03:46.921Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T00:03:46.921Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T00:03:46.921Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T00:03:46.921Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2019-12-11T00:03:46.921Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2019-12-11T00:03:46.921Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T00:03:46.921Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T00:03:46.921Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2019-12-11T00:03:46.921Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T00:03:46.921Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T00:03:46.921Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T00:03:46.921Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T00:03:46.921Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T00:03:46.921Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2019-12-11T00:03:46.921Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T00:03:46.921Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T00:03:46.921Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T00:03:46.921Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T00:03:46.921Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T00:03:46.921Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T00:03:46.921Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2019-12-11T00:03:46.921Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T00:03:46.921Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T00:03:46.921Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T00:03:46.921Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T00:03:46.921Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T00:03:46.921Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T00:03:46.921Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Ke5DPkkgT4WoVrLyWYoXvg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/Ke5DPkkgT4WoVrLyWYoXvg/artifacts/public/build/target.json deleted file mode 100644 index b652ed79..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Ke5DPkkgT4WoVrLyWYoXvg/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "buildid": "20191113000048", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "linux-x86_64-asan", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "77b18bc38fcfb26cbd1df38bc67ec840399a87e0", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/Ke5DPkkgT4WoVrLyWYoXvg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/Ke5DPkkgT4WoVrLyWYoXvg/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 3162c70d..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Ke5DPkkgT4WoVrLyWYoXvg/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": true, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": false, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": false, - "os": "linux", - "pgo": false, - "platform_guess": "linux64-asan", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": true, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Kgyk6sh9SLyoCPWts2PtWQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/Kgyk6sh9SLyoCPWts2PtWQ/artifacts/.get new file mode 100644 index 00000000..c4827ee7 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/Kgyk6sh9SLyoCPWts2PtWQ/artifacts/.get @@ -0,0 +1,238 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/geckoview-androidTest.apk", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/geckoview_example.apk", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727095125/geckoview-default-x86-80.0.20200727095125.aar", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727095125/geckoview-default-x86-80.0.20200727095125.aar.md5", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727095125/geckoview-default-x86-80.0.20200727095125.aar.sha1", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727095125/geckoview-default-x86-80.0.20200727095125-javadoc.jar", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727095125/geckoview-default-x86-80.0.20200727095125-javadoc.jar.md5", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727095125/geckoview-default-x86-80.0.20200727095125-javadoc.jar.sha1", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727095125/geckoview-default-x86-80.0.20200727095125.pom", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727095125/geckoview-default-x86-80.0.20200727095125.pom.md5", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727095125/geckoview-default-x86-80.0.20200727095125.pom.sha1", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727095125/geckoview-default-x86-80.0.20200727095125-sources.jar", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727095125/geckoview-default-x86-80.0.20200727095125-sources.jar.md5", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727095125/geckoview-default-x86-80.0.20200727095125-sources.jar.sha1", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "application/xml" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml.md5", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml.sha1", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T09:55:01.541Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Kgyk6sh9SLyoCPWts2PtWQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/Kgyk6sh9SLyoCPWts2PtWQ/artifacts/public/build/target.json new file mode 100644 index 00000000..3fc249ce --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/Kgyk6sh9SLyoCPWts2PtWQ/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=i686-linux-android", + "buildid": "20200727095125", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=i686-linux-android", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17 --target=i686-linux-android", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "fennec", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "android-i686", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "798bdad605b985a71cd204a56bb816dea503d432", + "moz_update_channel": "default", + "target_alias": "i686-pc-linux-android", + "target_cpu": "i686", + "target_os": "linux-android", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/Kgyk6sh9SLyoCPWts2PtWQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/Kgyk6sh9SLyoCPWts2PtWQ/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..f0e655c1 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/Kgyk6sh9SLyoCPWts2PtWQ/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,37 @@ +{ + "android_min_sdk": "16", + "appname": "fennec", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 32, + "buildapp": "mobile/android", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": false, + "official": true, + "os": "android", + "pgo": false, + "platform_guess": "android-x86", + "processor": "x86", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": false, + "telemetry": false, + "tests_enabled": true, + "toolkit": "android", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": false +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Kn632XVVRz2tVefNIlC7Ow/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/Kn632XVVRz2tVefNIlC7Ow/artifacts/.get deleted file mode 100644 index f97cad23..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Kn632XVVRz2tVefNIlC7Ow/artifacts/.get +++ /dev/null @@ -1,244 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.zip", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.zip", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.zip", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.zip", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.zip", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.zip", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.stylo-bindings.zip", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.zip", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.zip", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/logs/log_critical.log", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_debug.log", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_error.log", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_fatal.log", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_info.log", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_raw.log", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_warning.log", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "text/plain" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Kn632XVVRz2tVefNIlC7Ow/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/Kn632XVVRz2tVefNIlC7Ow/artifacts/public/build/target.json deleted file mode 100644 index 1bb33efd..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Kn632XVVRz2tVefNIlC7Ow/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "$(CC)", - "buildid": "20191014131614", - "cc": "/builds/worker/workspace/build/src/gcc/bin/gcc -std=gnu99", - "cxx": "/builds/worker/workspace/build/src/gcc/bin/g++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "60.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "60.9.1", - "moz_pkg_platform": "linux-x86_64-fuzzing", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr60", - "moz_source_stamp": "e67641c2e4ccd1fe2d4cd522b6575adec838697a", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/Kn632XVVRz2tVefNIlC7Ow/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/Kn632XVVRz2tVefNIlC7Ow/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 7efd552d..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Kn632XVVRz2tVefNIlC7Ow/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "addon_signing": true, - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": false, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk3", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/KoFeMfZZRCGuqP6olWerag/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/KoFeMfZZRCGuqP6olWerag/artifacts/.get deleted file mode 100644 index 69bfa52f..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/KoFeMfZZRCGuqP6olWerag/artifacts/.get +++ /dev/null @@ -1,238 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T00:03:45.385Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/KoFeMfZZRCGuqP6olWerag/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/KoFeMfZZRCGuqP6olWerag/artifacts/public/build/target.json deleted file mode 100644 index 5bae593f..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/KoFeMfZZRCGuqP6olWerag/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 -m32", - "buildid": "20191113000048", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 -m32", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -m32", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "linux-i686", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "77b18bc38fcfb26cbd1df38bc67ec840399a87e0", - "moz_update_channel": "default", - "target_alias": "i686-pc-linux-gnu", - "target_cpu": "i686", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/KoFeMfZZRCGuqP6olWerag/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/KoFeMfZZRCGuqP6olWerag/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 811dd91a..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/KoFeMfZZRCGuqP6olWerag/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 32, - "buildapp": "browser", - "buildtype_guess": "debug", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "linux", - "pgo": false, - "platform_guess": "linux", - "processor": "x86", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Ku53XFq6Q1uRpOtYtpuYog/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/Ku53XFq6Q1uRpOtYtpuYog/artifacts/.get new file mode 100644 index 00000000..6d37b1d2 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/Ku53XFq6Q1uRpOtYtpuYog/artifacts/.get @@ -0,0 +1,250 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.normandy.json", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T13:50:07.154Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Ku53XFq6Q1uRpOtYtpuYog/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/Ku53XFq6Q1uRpOtYtpuYog/artifacts/public/build/target.json new file mode 100644 index 00000000..50d66fb7 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/Ku53XFq6Q1uRpOtYtpuYog/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "buildid": "20200727134318", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-x86_64-asan", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "309bc57d580667ae85cee287d3d2b86d7fb21f01", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/Ku53XFq6Q1uRpOtYtpuYog/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/Ku53XFq6Q1uRpOtYtpuYog/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..e84f4330 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/Ku53XFq6Q1uRpOtYtpuYog/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": true, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": false, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": false, + "os": "linux", + "pgo": false, + "platform_guess": "linux64-asan", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": true, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/L18YVeNlSzCLBg7xe9Acgg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/L18YVeNlSzCLBg7xe9Acgg/artifacts/.get new file mode 100644 index 00000000..6dcbd95c --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/L18YVeNlSzCLBg7xe9Acgg/artifacts/.get @@ -0,0 +1,328 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/geckoview-androidTest.apk", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/geckoview_example.apk", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727033000/geckoview-default-armeabi-v7a-80.0.20200727033000.aar", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727033000/geckoview-default-armeabi-v7a-80.0.20200727033000.aar.md5", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727033000/geckoview-default-armeabi-v7a-80.0.20200727033000.aar.sha1", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727033000/geckoview-default-armeabi-v7a-80.0.20200727033000-javadoc.jar", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727033000/geckoview-default-armeabi-v7a-80.0.20200727033000-javadoc.jar.md5", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727033000/geckoview-default-armeabi-v7a-80.0.20200727033000-javadoc.jar.sha1", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727033000/geckoview-default-armeabi-v7a-80.0.20200727033000.pom", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727033000/geckoview-default-armeabi-v7a-80.0.20200727033000.pom.md5", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727033000/geckoview-default-armeabi-v7a-80.0.20200727033000.pom.sha1", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727033000/geckoview-default-armeabi-v7a-80.0.20200727033000-sources.jar", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727033000/geckoview-default-armeabi-v7a-80.0.20200727033000-sources.jar.md5", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727033000/geckoview-default-armeabi-v7a-80.0.20200727033000-sources.jar.sha1", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/xml" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml.md5", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml.sha1", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T03:36:23.593Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/L18YVeNlSzCLBg7xe9Acgg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/L18YVeNlSzCLBg7xe9Acgg/artifacts/public/build/target.json new file mode 100644 index 00000000..baa2c062 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/L18YVeNlSzCLBg7xe9Acgg/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=arm-linux-androideabi", + "buildid": "20200727033000", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=arm-linux-androideabi", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17 --target=arm-linux-androideabi", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "fennec", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "android-arm", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "56082fc4acfacba40993e47ef8302993c59e264e", + "moz_update_channel": "default", + "target_alias": "arm-unknown-linux-androideabi", + "target_cpu": "arm", + "target_os": "linux-androideabi", + "target_vendor": "unknown" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/L18YVeNlSzCLBg7xe9Acgg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/L18YVeNlSzCLBg7xe9Acgg/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..1a895df0 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/L18YVeNlSzCLBg7xe9Acgg/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,37 @@ +{ + "android_min_sdk": "16", + "appname": "fennec", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 32, + "buildapp": "mobile/android", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": false, + "official": true, + "os": "android", + "pgo": false, + "platform_guess": "android-arm", + "processor": "arm", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": false, + "telemetry": false, + "tests_enabled": true, + "toolkit": "android", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": false +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/L1UtuR1OQo-6VWw5B99Quw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/L1UtuR1OQo-6VWw5B99Quw/artifacts/.get deleted file mode 100644 index 1d3a2ed7..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/L1UtuR1OQo-6VWw5B99Quw/artifacts/.get +++ /dev/null @@ -1,226 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T00:03:47.159Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T00:03:47.159Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T00:03:47.159Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T00:03:47.159Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2019-12-11T00:03:47.159Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2019-12-11T00:03:47.159Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T00:03:47.159Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T00:03:47.159Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T00:03:47.159Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T00:03:47.159Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T00:03:47.159Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T00:03:47.159Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T00:03:47.159Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.dmg", - "expires": "2019-12-11T00:03:47.159Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2019-12-11T00:03:47.159Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2019-12-11T00:03:47.159Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T00:03:47.159Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T00:03:47.159Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2019-12-11T00:03:47.159Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T00:03:47.159Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T00:03:47.159Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T00:03:47.159Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T00:03:47.159Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T00:03:47.159Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T00:03:47.159Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T00:03:47.159Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T00:03:47.159Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T00:03:47.159Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T00:03:47.159Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T00:03:47.159Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2019-12-11T00:03:47.159Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T00:03:47.159Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T00:03:47.159Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T00:03:47.159Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T00:03:47.159Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T00:03:47.159Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T00:03:47.159Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/L1UtuR1OQo-6VWw5B99Quw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/L1UtuR1OQo-6VWw5B99Quw/artifacts/public/build/target.json deleted file mode 100644 index 0b1a0f1e..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/L1UtuR1OQo-6VWw5B99Quw/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", - "buildid": "20191113000048", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk --target=x86_64-apple-darwin", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "mac-asan", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "77b18bc38fcfb26cbd1df38bc67ec840399a87e0", - "moz_update_channel": "default", - "target_alias": "x86_64-apple-darwin", - "target_cpu": "x86_64", - "target_os": "darwin", - "target_vendor": "apple" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/L1UtuR1OQo-6VWw5B99Quw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/L1UtuR1OQo-6VWw5B99Quw/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index da4ac7df..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/L1UtuR1OQo-6VWw5B99Quw/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": true, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": false, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": false, - "os": "mac", - "pgo": false, - "platform_guess": "macosx64-asan", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "cocoa", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/L6Ur7n00SfqZSAHQjGh09A/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/L6Ur7n00SfqZSAHQjGh09A/artifacts/.get new file mode 100644 index 00000000..335bda10 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/L6Ur7n00SfqZSAHQjGh09A/artifacts/.get @@ -0,0 +1,328 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/geckoview-androidTest.apk", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/geckoview_example.apk", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727033000/geckoview-default-armeabi-v7a-80.0.20200727033000.aar", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727033000/geckoview-default-armeabi-v7a-80.0.20200727033000.aar.md5", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727033000/geckoview-default-armeabi-v7a-80.0.20200727033000.aar.sha1", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727033000/geckoview-default-armeabi-v7a-80.0.20200727033000-javadoc.jar", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727033000/geckoview-default-armeabi-v7a-80.0.20200727033000-javadoc.jar.md5", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727033000/geckoview-default-armeabi-v7a-80.0.20200727033000-javadoc.jar.sha1", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727033000/geckoview-default-armeabi-v7a-80.0.20200727033000.pom", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727033000/geckoview-default-armeabi-v7a-80.0.20200727033000.pom.md5", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727033000/geckoview-default-armeabi-v7a-80.0.20200727033000.pom.sha1", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727033000/geckoview-default-armeabi-v7a-80.0.20200727033000-sources.jar", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727033000/geckoview-default-armeabi-v7a-80.0.20200727033000-sources.jar.md5", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727033000/geckoview-default-armeabi-v7a-80.0.20200727033000-sources.jar.sha1", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/xml" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml.md5", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml.sha1", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T03:36:23.679Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/L6Ur7n00SfqZSAHQjGh09A/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/L6Ur7n00SfqZSAHQjGh09A/artifacts/public/build/target.json new file mode 100644 index 00000000..baa2c062 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/L6Ur7n00SfqZSAHQjGh09A/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=arm-linux-androideabi", + "buildid": "20200727033000", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=arm-linux-androideabi", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17 --target=arm-linux-androideabi", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "fennec", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "android-arm", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "56082fc4acfacba40993e47ef8302993c59e264e", + "moz_update_channel": "default", + "target_alias": "arm-unknown-linux-androideabi", + "target_cpu": "arm", + "target_os": "linux-androideabi", + "target_vendor": "unknown" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/L6Ur7n00SfqZSAHQjGh09A/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/L6Ur7n00SfqZSAHQjGh09A/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..3ba13582 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/L6Ur7n00SfqZSAHQjGh09A/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,37 @@ +{ + "android_min_sdk": "16", + "appname": "fennec", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 32, + "buildapp": "mobile/android", + "buildtype_guess": "debug", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": true, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": false, + "official": true, + "os": "android", + "pgo": false, + "platform_guess": "android-arm", + "processor": "arm", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": false, + "telemetry": false, + "tests_enabled": true, + "toolkit": "android", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": false +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/LDzz-xQIR9-ISs5mLpU0JQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/LDzz-xQIR9-ISs5mLpU0JQ/artifacts/.get deleted file mode 100644 index 1dcea83d..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/LDzz-xQIR9-ISs5mLpU0JQ/artifacts/.get +++ /dev/null @@ -1,232 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T00:03:45.390Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/LDzz-xQIR9-ISs5mLpU0JQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/LDzz-xQIR9-ISs5mLpU0JQ/artifacts/public/build/target.json deleted file mode 100644 index 9e222443..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/LDzz-xQIR9-ISs5mLpU0JQ/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/gcc/bin/gcc -std=gnu99", - "buildid": "20191113000048", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/gcc/bin/gcc -std=gnu99", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/gcc/bin/g++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "linux-x86_64-fuzzing", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "77b18bc38fcfb26cbd1df38bc67ec840399a87e0", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/LDzz-xQIR9-ISs5mLpU0JQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/LDzz-xQIR9-ISs5mLpU0JQ/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index dc3a3c2e..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/LDzz-xQIR9-ISs5mLpU0JQ/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "cc_type": "gcc", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": false, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/LhdV7HUVRZ2kywZrAvh7Og/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/LhdV7HUVRZ2kywZrAvh7Og/artifacts/.get deleted file mode 100644 index 44ba8085..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/LhdV7HUVRZ2kywZrAvh7Og/artifacts/.get +++ /dev/null @@ -1,226 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-12-16T04:16:24.834Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-12-16T04:16:24.834Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-12-16T04:16:24.834Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-12-16T04:16:24.834Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-12-16T04:16:24.834Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-12-16T04:16:24.834Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-12-16T04:16:24.834Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-12-16T04:16:24.834Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-12-16T04:16:24.834Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-12-16T04:16:24.834Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-12-16T04:16:24.834Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-12-16T04:16:24.834Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-12-16T04:16:24.834Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-12-16T04:16:24.834Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-12-16T04:16:24.834Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-12-16T04:16:24.834Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-12-16T04:16:24.834Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-12-16T04:16:24.834Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-12-16T04:16:24.834Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-12-16T04:16:24.834Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-12-16T04:16:24.834Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-12-16T04:16:24.834Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-12-16T04:16:24.834Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-12-16T04:16:24.834Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-12-16T04:16:24.834Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-12-16T04:16:24.834Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-12-16T04:16:24.834Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-12-16T04:16:24.834Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-12-16T04:16:24.834Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-12-16T04:16:24.834Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-12-16T04:16:24.834Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-12-16T04:16:24.834Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-12-16T04:16:24.834Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-12-16T04:16:24.834Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-12-16T04:16:24.834Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-12-16T04:16:24.834Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-12-16T04:16:24.834Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/LhdV7HUVRZ2kywZrAvh7Og/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/LhdV7HUVRZ2kywZrAvh7Og/artifacts/public/build/target.json deleted file mode 100644 index 06b5457d..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/LhdV7HUVRZ2kywZrAvh7Og/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "buildid": "20191217041353", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "73.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "73.0a1", - "moz_pkg_platform": "linux-x86_64-tsan", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "7bebdc108aa3b2fab6aa5c6d74b740649bb6b749", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/LhdV7HUVRZ2kywZrAvh7Og/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/LhdV7HUVRZ2kywZrAvh7Og/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 73d68511..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/LhdV7HUVRZ2kywZrAvh7Og/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": false, - "datareporting": true, - "debug": false, - "devedition": false, - "early_beta_or_earlier": true, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": false, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": true, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/LpLBX9oWRVuXjEPX4kBH7g/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/LpLBX9oWRVuXjEPX4kBH7g/artifacts/.get index ffa5ae9c..5c9c908c 100644 --- a/tests/mock-firefoxci/api/queue/v1/task/LpLBX9oWRVuXjEPX4kBH7g/artifacts/.get +++ b/tests/mock-firefoxci/api/queue/v1/task/LpLBX9oWRVuXjEPX4kBH7g/artifacts/.get @@ -2,19 +2,19 @@ "artifacts": [ { "storageType": "s3", - "name": "public/build/build_resources.html", + "name": "public/build/buildhub.json", "expires": "2020-12-02T18:08:55.866Z", - "contentType": "text/html" + "contentType": "application/json" }, { "storageType": "s3", - "name": "public/build/build_resources.json", + "name": "public/build/build_resources.html", "expires": "2020-12-02T18:08:55.866Z", - "contentType": "application/json" + "contentType": "text/html" }, { "storageType": "s3", - "name": "public/build/buildhub.json", + "name": "public/build/build_resources.json", "expires": "2020-12-02T18:08:55.866Z", "contentType": "application/json" }, @@ -102,6 +102,12 @@ "expires": "2020-12-02T18:08:55.866Z", "contentType": "application/gzip" }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-12-02T18:08:55.866Z", + "contentType": "text/plain" + }, { "storageType": "s3", "name": "public/build/target.json", @@ -186,12 +192,6 @@ "expires": "2020-12-02T18:08:55.866Z", "contentType": "application/gzip" }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-12-02T18:08:55.866Z", - "contentType": "text/plain" - }, { "storageType": "s3", "name": "public/build/xvfb/xvfb.log", @@ -217,14 +217,14 @@ "contentType": "text/plain" }, { - "storageType": "reference", - "name": "public/logs/live.log", + "storageType": "s3", + "name": "public/logs/live_backing.log", "expires": "2020-12-02T18:08:55.866Z", "contentType": "text/plain; charset=utf-8" }, { - "storageType": "s3", - "name": "public/logs/live_backing.log", + "storageType": "reference", + "name": "public/logs/live.log", "expires": "2020-12-02T18:08:55.866Z", "contentType": "text/plain; charset=utf-8" }, diff --git a/tests/mock-firefoxci/api/queue/v1/task/LtxtYrEkQfCIPHaab5hV1A/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/LtxtYrEkQfCIPHaab5hV1A/artifacts/.get new file mode 100644 index 00000000..05400fd8 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/LtxtYrEkQfCIPHaab5hV1A/artifacts/.get @@ -0,0 +1,250 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.normandy.json", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T01:47:56.934Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/LtxtYrEkQfCIPHaab5hV1A/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/LtxtYrEkQfCIPHaab5hV1A/artifacts/public/build/target.json new file mode 100644 index 00000000..e93794ff --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/LtxtYrEkQfCIPHaab5hV1A/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "buildid": "20200727014148", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-x86_64-asan", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "25d65b7e1b5bf562c68906b4eaaed54e558b3d1b", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/LtxtYrEkQfCIPHaab5hV1A/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/LtxtYrEkQfCIPHaab5hV1A/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..e84f4330 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/LtxtYrEkQfCIPHaab5hV1A/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": true, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": false, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": false, + "os": "linux", + "pgo": false, + "platform_guess": "linux64-asan", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": true, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Ly5gcO58RXieI0iRcUKIyg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/Ly5gcO58RXieI0iRcUKIyg/artifacts/.get new file mode 100644 index 00000000..0269ccdc --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/Ly5gcO58RXieI0iRcUKIyg/artifacts/.get @@ -0,0 +1,256 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/install/sea/target.installer.exe", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/setup.exe", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.zip", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T02:50:54.588Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Ly5gcO58RXieI0iRcUKIyg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/Ly5gcO58RXieI0iRcUKIyg/artifacts/public/build/target.json new file mode 100644 index 00000000..693eebd4 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/Ly5gcO58RXieI0iRcUKIyg/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/checkouts/gecko/vs2017_15.9.6/VC/bin/Hostx64/arm64/armasm64.exe", + "buildid": "20200727024623", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang-cl -Xclang -std=gnu99 --target=aarch64-windows-msvc", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang-cl -Xclang -std=c++17 --target=aarch64-windows-msvc", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "win64-aarch64", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "321902edb883e7a37efc6b686da6f20894c72f21", + "moz_update_channel": "default", + "target_alias": "aarch64-windows-mingw32", + "target_cpu": "aarch64", + "target_os": "mingw32", + "target_vendor": "windows" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/Ly5gcO58RXieI0iRcUKIyg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/Ly5gcO58RXieI0iRcUKIyg/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..1c5c0593 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/Ly5gcO58RXieI0iRcUKIyg/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": ".exe", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang-cl", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "win", + "pgo": false, + "platform_guess": "win64", + "processor": "aarch64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "windows", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/M1-kt-UfTP6PmyT8n625ag/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/M1-kt-UfTP6PmyT8n625ag/artifacts/.get new file mode 100644 index 00000000..f232e578 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/M1-kt-UfTP6PmyT8n625ag/artifacts/.get @@ -0,0 +1,328 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/geckoview-androidTest.apk", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/geckoview_example.apk", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727003535/geckoview-default-arm64-v8a-80.0.20200727003535.aar", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727003535/geckoview-default-arm64-v8a-80.0.20200727003535.aar.md5", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727003535/geckoview-default-arm64-v8a-80.0.20200727003535.aar.sha1", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727003535/geckoview-default-arm64-v8a-80.0.20200727003535-javadoc.jar", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727003535/geckoview-default-arm64-v8a-80.0.20200727003535-javadoc.jar.md5", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727003535/geckoview-default-arm64-v8a-80.0.20200727003535-javadoc.jar.sha1", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727003535/geckoview-default-arm64-v8a-80.0.20200727003535.pom", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727003535/geckoview-default-arm64-v8a-80.0.20200727003535.pom.md5", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727003535/geckoview-default-arm64-v8a-80.0.20200727003535.pom.sha1", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727003535/geckoview-default-arm64-v8a-80.0.20200727003535-sources.jar", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727003535/geckoview-default-arm64-v8a-80.0.20200727003535-sources.jar.md5", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727003535/geckoview-default-arm64-v8a-80.0.20200727003535-sources.jar.sha1", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/maven-metadata.xml", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/xml" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/maven-metadata.xml.md5", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/maven-metadata.xml.sha1", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T00:40:19.230Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/M1-kt-UfTP6PmyT8n625ag/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/M1-kt-UfTP6PmyT8n625ag/artifacts/public/build/target.json new file mode 100644 index 00000000..9a40f068 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/M1-kt-UfTP6PmyT8n625ag/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=aarch64-linux-android", + "buildid": "20200727003535", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=aarch64-linux-android", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17 --target=aarch64-linux-android", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "fennec", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "android-aarch64", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "795f8a67fda8045af868f73d74d11b70b874db61", + "moz_update_channel": "default", + "target_alias": "aarch64-unknown-linux-android", + "target_cpu": "aarch64", + "target_os": "linux-android", + "target_vendor": "unknown" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/M1-kt-UfTP6PmyT8n625ag/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/M1-kt-UfTP6PmyT8n625ag/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..c61f924e --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/M1-kt-UfTP6PmyT8n625ag/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,37 @@ +{ + "android_min_sdk": "21", + "appname": "fennec", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "mobile/android", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": false, + "official": true, + "os": "android", + "pgo": false, + "platform_guess": "android-aarch64", + "processor": "aarch64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": false, + "telemetry": false, + "tests_enabled": true, + "toolkit": "android", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": false +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/M7t6MjptQwmQ9RNCjzeV9w/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/M7t6MjptQwmQ9RNCjzeV9w/artifacts/.get new file mode 100644 index 00000000..77887ff2 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/M7t6MjptQwmQ9RNCjzeV9w/artifacts/.get @@ -0,0 +1,238 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.normandy.json", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T13:54:31.669Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/M7t6MjptQwmQ9RNCjzeV9w/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/M7t6MjptQwmQ9RNCjzeV9w/artifacts/public/build/target.json new file mode 100644 index 00000000..74eb38ac --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/M7t6MjptQwmQ9RNCjzeV9w/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "", + "buildid": "20200727134833", + "cc": "", + "cxx": "", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-x86_64", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "70426fd9a691ac3a6507d4861cb714a0fb6dc188", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/M7t6MjptQwmQ9RNCjzeV9w/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/M7t6MjptQwmQ9RNCjzeV9w/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..c5e8e33d --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/M7t6MjptQwmQ9RNCjzeV9w/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": true, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "debug", + "cc_type": null, + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": true, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "linux", + "pgo": false, + "platform_guess": "linux64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/M80oPXvqQZmnOyZho0Jveg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/M80oPXvqQZmnOyZho0Jveg/artifacts/.get new file mode 100644 index 00000000..02698b6e --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/M80oPXvqQZmnOyZho0Jveg/artifacts/.get @@ -0,0 +1,328 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/geckoview-androidTest.apk", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/geckoview_example.apk", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727095125/geckoview-default-armeabi-v7a-80.0.20200727095125.aar", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727095125/geckoview-default-armeabi-v7a-80.0.20200727095125.aar.md5", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727095125/geckoview-default-armeabi-v7a-80.0.20200727095125.aar.sha1", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727095125/geckoview-default-armeabi-v7a-80.0.20200727095125-javadoc.jar", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727095125/geckoview-default-armeabi-v7a-80.0.20200727095125-javadoc.jar.md5", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727095125/geckoview-default-armeabi-v7a-80.0.20200727095125-javadoc.jar.sha1", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727095125/geckoview-default-armeabi-v7a-80.0.20200727095125.pom", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727095125/geckoview-default-armeabi-v7a-80.0.20200727095125.pom.md5", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727095125/geckoview-default-armeabi-v7a-80.0.20200727095125.pom.sha1", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727095125/geckoview-default-armeabi-v7a-80.0.20200727095125-sources.jar", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727095125/geckoview-default-armeabi-v7a-80.0.20200727095125-sources.jar.md5", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727095125/geckoview-default-armeabi-v7a-80.0.20200727095125-sources.jar.sha1", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/xml" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml.md5", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml.sha1", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T09:55:01.411Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/M80oPXvqQZmnOyZho0Jveg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/M80oPXvqQZmnOyZho0Jveg/artifacts/public/build/target.json new file mode 100644 index 00000000..ac31b50e --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/M80oPXvqQZmnOyZho0Jveg/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=arm-linux-androideabi", + "buildid": "20200727095125", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=arm-linux-androideabi", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17 --target=arm-linux-androideabi", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "fennec", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "android-arm", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "798bdad605b985a71cd204a56bb816dea503d432", + "moz_update_channel": "default", + "target_alias": "arm-unknown-linux-androideabi", + "target_cpu": "arm", + "target_os": "linux-androideabi", + "target_vendor": "unknown" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/M80oPXvqQZmnOyZho0Jveg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/M80oPXvqQZmnOyZho0Jveg/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..1a895df0 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/M80oPXvqQZmnOyZho0Jveg/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,37 @@ +{ + "android_min_sdk": "16", + "appname": "fennec", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 32, + "buildapp": "mobile/android", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": false, + "official": true, + "os": "android", + "pgo": false, + "platform_guess": "android-arm", + "processor": "arm", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": false, + "telemetry": false, + "tests_enabled": true, + "toolkit": "android", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": false +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/M8ZhavH4Tr-cNk86ePROdw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/M8ZhavH4Tr-cNk86ePROdw/artifacts/.get deleted file mode 100644 index 49fb4dde..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/M8ZhavH4Tr-cNk86ePROdw/artifacts/.get +++ /dev/null @@ -1,238 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-11T09:45:04.226Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/M8ZhavH4Tr-cNk86ePROdw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/M8ZhavH4Tr-cNk86ePROdw/artifacts/public/build/target.json deleted file mode 100644 index 1b198508..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/M8ZhavH4Tr-cNk86ePROdw/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "buildid": "20191112094307", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "linux-x86_64", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "5f0b392beadb7300abdaa3e5e1cc1c0d5a9f0791", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/M8ZhavH4Tr-cNk86ePROdw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/M8ZhavH4Tr-cNk86ePROdw/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 51718130..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/M8ZhavH4Tr-cNk86ePROdw/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/MJVRUKY9QjeNwlfgb15bZQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/MJVRUKY9QjeNwlfgb15bZQ/artifacts/.get new file mode 100644 index 00000000..a3fed951 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/MJVRUKY9QjeNwlfgb15bZQ/artifacts/.get @@ -0,0 +1,262 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.normandy.json", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T09:55:01.491Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/MJVRUKY9QjeNwlfgb15bZQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/MJVRUKY9QjeNwlfgb15bZQ/artifacts/public/build/target.json new file mode 100644 index 00000000..051778f6 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/MJVRUKY9QjeNwlfgb15bZQ/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "buildid": "20200727095125", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-x86_64", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "798bdad605b985a71cd204a56bb816dea503d432", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/MJVRUKY9QjeNwlfgb15bZQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/MJVRUKY9QjeNwlfgb15bZQ/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..d3c93a6a --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/MJVRUKY9QjeNwlfgb15bZQ/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "linux", + "pgo": false, + "platform_guess": "linux64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/MLP6Ze71QbOqbVHM4ePilA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/MLP6Ze71QbOqbVHM4ePilA/artifacts/.get new file mode 100644 index 00000000..ff00210c --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/MLP6Ze71QbOqbVHM4ePilA/artifacts/.get @@ -0,0 +1,160 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T02:50:54.602Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T02:50:54.602Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T02:50:54.602Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T02:50:54.602Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/install/sea/target.installer.exe", + "expires": "2020-08-24T02:50:54.602Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T02:50:54.602Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T02:50:54.602Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/setup.exe", + "expires": "2020-08-24T02:50:54.602Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T02:50:54.602Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2020-08-24T02:50:54.602Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2020-08-24T02:50:54.602Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-24T02:50:54.602Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T02:50:54.602Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T02:50:54.602Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T02:50:54.602Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2020-08-24T02:50:54.602Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T02:50:54.602Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T02:50:54.602Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.zip", + "expires": "2020-08-24T02:50:54.602Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2020-08-24T02:50:54.602Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T02:50:54.602Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T02:50:54.602Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T02:50:54.602Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T02:50:54.602Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T02:50:54.602Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T02:50:54.602Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/MLP6Ze71QbOqbVHM4ePilA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/MLP6Ze71QbOqbVHM4ePilA/artifacts/public/build/target.json new file mode 100644 index 00000000..693eebd4 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/MLP6Ze71QbOqbVHM4ePilA/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/checkouts/gecko/vs2017_15.9.6/VC/bin/Hostx64/arm64/armasm64.exe", + "buildid": "20200727024623", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang-cl -Xclang -std=gnu99 --target=aarch64-windows-msvc", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang-cl -Xclang -std=c++17 --target=aarch64-windows-msvc", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "win64-aarch64", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "321902edb883e7a37efc6b686da6f20894c72f21", + "moz_update_channel": "default", + "target_alias": "aarch64-windows-mingw32", + "target_cpu": "aarch64", + "target_os": "mingw32", + "target_vendor": "windows" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/MLP6Ze71QbOqbVHM4ePilA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/MLP6Ze71QbOqbVHM4ePilA/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..eb559a4c --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/MLP6Ze71QbOqbVHM4ePilA/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": ".exe", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "debug", + "cc_type": "clang-cl", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": true, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "win", + "pgo": false, + "platform_guess": "win64", + "processor": "aarch64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "windows", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/MMHs5aKxS4GSXaJVtvfK6A/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/MMHs5aKxS4GSXaJVtvfK6A/artifacts/.get deleted file mode 100644 index e5f7c352..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/MMHs5aKxS4GSXaJVtvfK6A/artifacts/.get +++ /dev/null @@ -1,226 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-01-14T19:18:49.371Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-01-14T19:18:49.371Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-01-14T19:18:49.371Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-01-14T19:18:49.371Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-01-14T19:18:49.371Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-01-14T19:18:49.371Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-01-14T19:18:49.371Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-01-14T19:18:49.371Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-01-14T19:18:49.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-01-14T19:18:49.371Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-01-14T19:18:49.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-01-14T19:18:49.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-01-14T19:18:49.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-01-14T19:18:49.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-01-14T19:18:49.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-01-14T19:18:49.371Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-01-14T19:18:49.371Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-01-14T19:18:49.371Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-01-14T19:18:49.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-01-14T19:18:49.371Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-01-14T19:18:49.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-01-14T19:18:49.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-01-14T19:18:49.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-01-14T19:18:49.371Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-01-14T19:18:49.371Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-01-14T19:18:49.371Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-01-14T19:18:49.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-01-14T19:18:49.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-01-14T19:18:49.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-01-14T19:18:49.371Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-01-14T19:18:49.371Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-01-14T19:18:49.371Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-01-14T19:18:49.371Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-01-14T19:18:49.371Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-01-14T19:18:49.371Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-01-14T19:18:49.371Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-01-14T19:18:49.371Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/MMHs5aKxS4GSXaJVtvfK6A/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/MMHs5aKxS4GSXaJVtvfK6A/artifacts/public/build/target.json deleted file mode 100644 index 2ab51143..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/MMHs5aKxS4GSXaJVtvfK6A/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "buildid": "20191217191615", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "73.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "73.0a1", - "moz_pkg_platform": "linux-x86_64-tsan", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "93918c6073b0127bdd9b8808ec03c1bf9b795994", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/MMHs5aKxS4GSXaJVtvfK6A/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/MMHs5aKxS4GSXaJVtvfK6A/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 73d68511..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/MMHs5aKxS4GSXaJVtvfK6A/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": false, - "datareporting": true, - "debug": false, - "devedition": false, - "early_beta_or_earlier": true, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": false, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": true, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/MRcS87VoS5ChJQmhvCoWBg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/MRcS87VoS5ChJQmhvCoWBg/artifacts/.get new file mode 100644 index 00000000..27cb17cc --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/MRcS87VoS5ChJQmhvCoWBg/artifacts/.get @@ -0,0 +1,328 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/geckoview-androidTest.apk", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/geckoview_example.apk", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727095125/geckoview-default-arm64-v8a-80.0.20200727095125.aar", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727095125/geckoview-default-arm64-v8a-80.0.20200727095125.aar.md5", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727095125/geckoview-default-arm64-v8a-80.0.20200727095125.aar.sha1", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727095125/geckoview-default-arm64-v8a-80.0.20200727095125-javadoc.jar", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727095125/geckoview-default-arm64-v8a-80.0.20200727095125-javadoc.jar.md5", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727095125/geckoview-default-arm64-v8a-80.0.20200727095125-javadoc.jar.sha1", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727095125/geckoview-default-arm64-v8a-80.0.20200727095125.pom", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727095125/geckoview-default-arm64-v8a-80.0.20200727095125.pom.md5", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727095125/geckoview-default-arm64-v8a-80.0.20200727095125.pom.sha1", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727095125/geckoview-default-arm64-v8a-80.0.20200727095125-sources.jar", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727095125/geckoview-default-arm64-v8a-80.0.20200727095125-sources.jar.md5", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727095125/geckoview-default-arm64-v8a-80.0.20200727095125-sources.jar.sha1", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/maven-metadata.xml", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/xml" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/maven-metadata.xml.md5", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/maven-metadata.xml.sha1", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T09:55:01.087Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/MRcS87VoS5ChJQmhvCoWBg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/MRcS87VoS5ChJQmhvCoWBg/artifacts/public/build/target.json new file mode 100644 index 00000000..6fba1488 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/MRcS87VoS5ChJQmhvCoWBg/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=aarch64-linux-android", + "buildid": "20200727095125", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=aarch64-linux-android", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17 --target=aarch64-linux-android", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "fennec", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "android-aarch64", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "798bdad605b985a71cd204a56bb816dea503d432", + "moz_update_channel": "default", + "target_alias": "aarch64-unknown-linux-android", + "target_cpu": "aarch64", + "target_os": "linux-android", + "target_vendor": "unknown" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/MRcS87VoS5ChJQmhvCoWBg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/MRcS87VoS5ChJQmhvCoWBg/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..c61f924e --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/MRcS87VoS5ChJQmhvCoWBg/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,37 @@ +{ + "android_min_sdk": "21", + "appname": "fennec", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "mobile/android", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": false, + "official": true, + "os": "android", + "pgo": false, + "platform_guess": "android-aarch64", + "processor": "aarch64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": false, + "telemetry": false, + "tests_enabled": true, + "toolkit": "android", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": false +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Mub56ygrTKWXMZUubVoovg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/Mub56ygrTKWXMZUubVoovg/artifacts/.get new file mode 100644 index 00000000..b647a82b --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/Mub56ygrTKWXMZUubVoovg/artifacts/.get @@ -0,0 +1,232 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/geckoview-androidTest.apk", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/geckoview_example.apk", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727024623/geckoview-default-x86-80.0.20200727024623.aar", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727024623/geckoview-default-x86-80.0.20200727024623.aar.md5", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727024623/geckoview-default-x86-80.0.20200727024623.aar.sha1", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727024623/geckoview-default-x86-80.0.20200727024623-javadoc.jar", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727024623/geckoview-default-x86-80.0.20200727024623-javadoc.jar.md5", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727024623/geckoview-default-x86-80.0.20200727024623-javadoc.jar.sha1", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727024623/geckoview-default-x86-80.0.20200727024623.pom", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727024623/geckoview-default-x86-80.0.20200727024623.pom.md5", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727024623/geckoview-default-x86-80.0.20200727024623.pom.sha1", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727024623/geckoview-default-x86-80.0.20200727024623-sources.jar", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727024623/geckoview-default-x86-80.0.20200727024623-sources.jar.md5", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727024623/geckoview-default-x86-80.0.20200727024623-sources.jar.sha1", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "application/xml" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml.md5", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml.sha1", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T02:50:55.014Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Mub56ygrTKWXMZUubVoovg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/Mub56ygrTKWXMZUubVoovg/artifacts/public/build/target.json new file mode 100644 index 00000000..d4ca2486 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/Mub56ygrTKWXMZUubVoovg/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=i686-linux-android", + "buildid": "20200727024623", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=i686-linux-android", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17 --target=i686-linux-android", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "fennec", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "android-i686-fuzzing", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "321902edb883e7a37efc6b686da6f20894c72f21", + "moz_update_channel": "default", + "target_alias": "i686-pc-linux-android", + "target_cpu": "i686", + "target_os": "linux-android", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/Mub56ygrTKWXMZUubVoovg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/Mub56ygrTKWXMZUubVoovg/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..1e2e994a --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/Mub56ygrTKWXMZUubVoovg/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,37 @@ +{ + "android_min_sdk": "16", + "appname": "fennec", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 32, + "buildapp": "mobile/android", + "buildtype_guess": "debug", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": true, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": false, + "official": true, + "os": "android", + "pgo": false, + "platform_guess": "android-x86", + "processor": "x86", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": false, + "telemetry": false, + "tests_enabled": true, + "toolkit": "android", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": false +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/N01_OUw1Ts-gqVDABBod-Q/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/N01_OUw1Ts-gqVDABBod-Q/artifacts/.get new file mode 100644 index 00000000..acf88b92 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/N01_OUw1Ts-gqVDABBod-Q/artifacts/.get @@ -0,0 +1,262 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.codesign-entitlements.zip", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.dmg", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T09:55:01.474Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/N01_OUw1Ts-gqVDABBod-Q/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/N01_OUw1Ts-gqVDABBod-Q/artifacts/public/build/target.json new file mode 100644 index 00000000..100d752c --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/N01_OUw1Ts-gqVDABBod-Q/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/checkouts/gecko/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", + "buildid": "20200727095125", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/checkouts/gecko/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -isysroot /builds/worker/checkouts/gecko/MacOSX10.11.sdk -std=gnu++17 --target=x86_64-apple-darwin", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "mac", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "798bdad605b985a71cd204a56bb816dea503d432", + "moz_update_channel": "default", + "target_alias": "x86_64-apple-darwin", + "target_cpu": "x86_64", + "target_os": "darwin", + "target_vendor": "apple" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/N01_OUw1Ts-gqVDABBod-Q/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/N01_OUw1Ts-gqVDABBod-Q/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..20e7edce --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/N01_OUw1Ts-gqVDABBod-Q/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "debug", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": true, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "mac", + "pgo": false, + "platform_guess": "macosx64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "cocoa", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/NP3U5bKiTEefgd2O6a0MPw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/NP3U5bKiTEefgd2O6a0MPw/artifacts/.get new file mode 100644 index 00000000..a240a073 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/NP3U5bKiTEefgd2O6a0MPw/artifacts/.get @@ -0,0 +1,250 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.normandy.json", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T03:36:24.037Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/NP3U5bKiTEefgd2O6a0MPw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/NP3U5bKiTEefgd2O6a0MPw/artifacts/public/build/target.json new file mode 100644 index 00000000..fb43ba68 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/NP3U5bKiTEefgd2O6a0MPw/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "buildid": "20200727033000", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-x86_64-tsan", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "56082fc4acfacba40993e47ef8302993c59e264e", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/NP3U5bKiTEefgd2O6a0MPw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/NP3U5bKiTEefgd2O6a0MPw/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..ea907cb4 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/NP3U5bKiTEefgd2O6a0MPw/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": false, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": false, + "os": "linux", + "pgo": false, + "platform_guess": "linux64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": true, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/NTKDp9loS6adtUEUDoBBxw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/NTKDp9loS6adtUEUDoBBxw/artifacts/.get deleted file mode 100644 index fcd6c37e..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/NTKDp9loS6adtUEUDoBBxw/artifacts/.get +++ /dev/null @@ -1,244 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar.exe", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff.exe", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/install/sea/target.installer.exe", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/setup.exe", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.zip", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.zip", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.zip", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.zip", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.zip", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.stylo-bindings.zip", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.zip", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.zip", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.zip", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/log_critical.log", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_error.log", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_fatal.log", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_info.log", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_raw.log", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_warning.log", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "text/plain" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/NTKDp9loS6adtUEUDoBBxw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/NTKDp9loS6adtUEUDoBBxw/artifacts/public/build/target.json deleted file mode 100644 index 96ef513e..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/NTKDp9loS6adtUEUDoBBxw/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "ml64.exe", - "buildid": "20191014131614", - "cc": "z:/build/build/src/vs2017_15.4.2/VC/bin/Hostx64/x64/cl.exe", - "cxx": "z:/build/build/src/vs2017_15.4.2/VC/bin/Hostx64/x64/cl.exe", - "host_alias": "x86_64-pc-mingw32", - "host_cpu": "x86_64", - "host_os": "mingw32", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "60.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "60.9.1", - "moz_pkg_platform": "win64", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr60", - "moz_source_stamp": "e67641c2e4ccd1fe2d4cd522b6575adec838697a", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-mingw32", - "target_cpu": "x86_64", - "target_os": "mingw32", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/NTKDp9loS6adtUEUDoBBxw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/NTKDp9loS6adtUEUDoBBxw/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index b135f181..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/NTKDp9loS6adtUEUDoBBxw/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "addon_signing": true, - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": ".exe", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "pgo", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "z:/build/build/src/.mozconfig", - "nightly_build": false, - "official": true, - "os": "win", - "pgo": true, - "platform_guess": "win64", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "windows", - "topsrcdir": "z:/build/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/N_K3Ym8MQL-bnraItA7_cQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/N_K3Ym8MQL-bnraItA7_cQ/artifacts/.get new file mode 100644 index 00000000..b83aca75 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/N_K3Ym8MQL-bnraItA7_cQ/artifacts/.get @@ -0,0 +1,250 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.normandy.json", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T12:05:51.978Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/N_K3Ym8MQL-bnraItA7_cQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/N_K3Ym8MQL-bnraItA7_cQ/artifacts/public/build/target.json new file mode 100644 index 00000000..a8097b09 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/N_K3Ym8MQL-bnraItA7_cQ/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "buildid": "20200727120117", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-x86_64-tsan", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "f36e2474d1eb91a657a494f325caa33ef5311f77", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/N_K3Ym8MQL-bnraItA7_cQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/N_K3Ym8MQL-bnraItA7_cQ/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..ea907cb4 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/N_K3Ym8MQL-bnraItA7_cQ/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": false, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": false, + "os": "linux", + "pgo": false, + "platform_guess": "linux64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": true, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Nh2PamdHQoyaD52PLzy9iA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/Nh2PamdHQoyaD52PLzy9iA/artifacts/.get new file mode 100644 index 00000000..e3a5bfa8 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/Nh2PamdHQoyaD52PLzy9iA/artifacts/.get @@ -0,0 +1,160 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T09:55:01.303Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T09:55:01.303Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T09:55:01.303Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T09:55:01.303Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/install/sea/target.installer.exe", + "expires": "2021-07-27T09:55:01.303Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T09:55:01.303Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T09:55:01.303Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/setup.exe", + "expires": "2021-07-27T09:55:01.303Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T09:55:01.303Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2021-07-27T09:55:01.303Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T09:55:01.303Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T09:55:01.303Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T09:55:01.303Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T09:55:01.303Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T09:55:01.303Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T09:55:01.303Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T09:55:01.303Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T09:55:01.303Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.zip", + "expires": "2021-07-27T09:55:01.303Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2021-07-27T09:55:01.303Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T09:55:01.303Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T09:55:01.303Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T09:55:01.303Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T09:55:01.303Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T09:55:01.303Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T09:55:01.303Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Nh2PamdHQoyaD52PLzy9iA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/Nh2PamdHQoyaD52PLzy9iA/artifacts/public/build/target.json new file mode 100644 index 00000000..6ee2b81b --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/Nh2PamdHQoyaD52PLzy9iA/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/checkouts/gecko/vs2017_15.9.6/VC/bin/Hostx64/arm64/armasm64.exe", + "buildid": "20200727095125", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang-cl -Xclang -std=gnu99 --target=aarch64-windows-msvc", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang-cl -Xclang -std=c++17 --target=aarch64-windows-msvc", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "win64-aarch64", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "798bdad605b985a71cd204a56bb816dea503d432", + "moz_update_channel": "default", + "target_alias": "aarch64-windows-mingw32", + "target_cpu": "aarch64", + "target_os": "mingw32", + "target_vendor": "windows" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/Nh2PamdHQoyaD52PLzy9iA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/Nh2PamdHQoyaD52PLzy9iA/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..eb559a4c --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/Nh2PamdHQoyaD52PLzy9iA/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": ".exe", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "debug", + "cc_type": "clang-cl", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": true, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "win", + "pgo": false, + "platform_guess": "win64", + "processor": "aarch64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "windows", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Ni2wPbu1TRSX0tTQ4WgLgA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/Ni2wPbu1TRSX0tTQ4WgLgA/artifacts/.get deleted file mode 100644 index 87e89934..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Ni2wPbu1TRSX0tTQ4WgLgA/artifacts/.get +++ /dev/null @@ -1,226 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-11T22:30:46.516Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-11T22:30:46.516Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar.exe", - "expires": "2020-11-11T22:30:46.516Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff.exe", - "expires": "2020-11-11T22:30:46.516Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/install/sea/target.installer.exe", - "expires": "2020-11-11T22:30:46.516Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-11T22:30:46.516Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/setup.exe", - "expires": "2020-11-11T22:30:46.516Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-11T22:30:46.516Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-11T22:30:46.516Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-11T22:30:46.516Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-11T22:30:46.516Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-11T22:30:46.516Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-11T22:30:46.516Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-11T22:30:46.516Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-11T22:30:46.516Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-11T22:30:46.516Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-11T22:30:46.516Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-11T22:30:46.516Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-11T22:30:46.516Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-11T22:30:46.516Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-11T22:30:46.516Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-11T22:30:46.516Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-11T22:30:46.516Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-11T22:30:46.516Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-11T22:30:46.516Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-11T22:30:46.516Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-11T22:30:46.516Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-11T22:30:46.516Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.zip", - "expires": "2020-11-11T22:30:46.516Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-11T22:30:46.516Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-11T22:30:46.516Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-11T22:30:46.516Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-11T22:30:46.516Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-11T22:30:46.516Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-11T22:30:46.516Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-11T22:30:46.516Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-11T22:30:46.516Z", - "contentType": "application/octet-stream" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Ni2wPbu1TRSX0tTQ4WgLgA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/Ni2wPbu1TRSX0tTQ4WgLgA/artifacts/public/build/target.json deleted file mode 100644 index a64e9cbb..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Ni2wPbu1TRSX0tTQ4WgLgA/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "z:/build/build/src/vs2017_15.9.6/VC/bin/HostX64/arm64/armasm64.exe", - "buildid": "20191112222920", - "cc": "z:/build/build/src/clang/bin/clang-cl.exe -Xclang -std=gnu99 --target=aarch64-windows-msvc", - "cxx": "z:/build/build/src/clang/bin/clang-cl.exe --target=aarch64-windows-msvc", - "host_alias": "x86_64-pc-mingw32", - "host_cpu": "x86_64", - "host_os": "mingw32", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "68.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "68.2.1", - "moz_pkg_platform": "win64", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr68", - "moz_source_stamp": "939a3aec03d304a0a3e3b003e26965c6e95ec211", - "moz_update_channel": "default", - "target_alias": "aarch64-windows-mingw32", - "target_cpu": "aarch64", - "target_os": "mingw32", - "target_vendor": "windows" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/Ni2wPbu1TRSX0tTQ4WgLgA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/Ni2wPbu1TRSX0tTQ4WgLgA/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 871eb929..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Ni2wPbu1TRSX0tTQ4WgLgA/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": ".exe", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "cc_type": "clang-cl", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "z:/build/build/src/.mozconfig", - "nightly_build": false, - "official": true, - "os": "win", - "pgo": false, - "platform_guess": "win64", - "processor": "aarch64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "windows", - "topsrcdir": "z:/build/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/No1BJzSQR-eiWEd_mOd2BQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/No1BJzSQR-eiWEd_mOd2BQ/artifacts/.get deleted file mode 100644 index 028769a6..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/No1BJzSQR-eiWEd_mOd2BQ/artifacts/.get +++ /dev/null @@ -1,322 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/geckoview-androidTest.apk", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/geckoview_example.apk", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113000048/geckoview-default-x86_64-72.0.20191113000048-javadoc.jar", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113000048/geckoview-default-x86_64-72.0.20191113000048-javadoc.jar.md5", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113000048/geckoview-default-x86_64-72.0.20191113000048-javadoc.jar.sha1", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113000048/geckoview-default-x86_64-72.0.20191113000048-sources.jar", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113000048/geckoview-default-x86_64-72.0.20191113000048-sources.jar.md5", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113000048/geckoview-default-x86_64-72.0.20191113000048-sources.jar.sha1", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113000048/geckoview-default-x86_64-72.0.20191113000048.aar", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113000048/geckoview-default-x86_64-72.0.20191113000048.aar.md5", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113000048/geckoview-default-x86_64-72.0.20191113000048.aar.sha1", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113000048/geckoview-default-x86_64-72.0.20191113000048.pom", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113000048/geckoview-default-x86_64-72.0.20191113000048.pom.md5", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113000048/geckoview-default-x86_64-72.0.20191113000048.pom.sha1", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/maven-metadata.xml", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/xml" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/maven-metadata.xml.md5", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/maven-metadata.xml.sha1", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/No1BJzSQR-eiWEd_mOd2BQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/No1BJzSQR-eiWEd_mOd2BQ/artifacts/public/build/target.json deleted file mode 100644 index a98e50be..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/No1BJzSQR-eiWEd_mOd2BQ/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=x86_64-linux-android", - "buildid": "20191113000048", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=x86_64-linux-android", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ --target=x86_64-linux-android", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "fennec", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "android-x86_64", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "77b18bc38fcfb26cbd1df38bc67ec840399a87e0", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-android", - "target_cpu": "x86_64", - "target_os": "linux-android", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/No1BJzSQR-eiWEd_mOd2BQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/No1BJzSQR-eiWEd_mOd2BQ/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 29a47812..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/No1BJzSQR-eiWEd_mOd2BQ/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "allow_legacy_extensions": true, - "android_min_sdk": "21", - "appname": "fennec", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "mobile/android", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": false, - "official": true, - "os": "android", - "pgo": false, - "platform_guess": "android-arm", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": false, - "telemetry": false, - "tests_enabled": true, - "toolkit": "android", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Nqw1RfbJRcmhxBrE6hKH8g/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/Nqw1RfbJRcmhxBrE6hKH8g/artifacts/.get new file mode 100644 index 00000000..22766fb5 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/Nqw1RfbJRcmhxBrE6hKH8g/artifacts/.get @@ -0,0 +1,256 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/install/sea/target.installer.exe", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/setup.exe", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.zip", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T09:55:01.037Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Nqw1RfbJRcmhxBrE6hKH8g/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/Nqw1RfbJRcmhxBrE6hKH8g/artifacts/public/build/target.json new file mode 100644 index 00000000..d360feee --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/Nqw1RfbJRcmhxBrE6hKH8g/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/checkouts/gecko/vs2017_15.8.4/VC/bin/Hostx64/x64/ml64.exe", + "buildid": "20200727095125", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang-cl -Xclang -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang-cl -Xclang -std=c++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "win64", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "798bdad605b985a71cd204a56bb816dea503d432", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-mingw32", + "target_cpu": "x86_64", + "target_os": "mingw32", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/Nqw1RfbJRcmhxBrE6hKH8g/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/Nqw1RfbJRcmhxBrE6hKH8g/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..7471beb0 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/Nqw1RfbJRcmhxBrE6hKH8g/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": ".exe", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang-cl", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "win", + "pgo": false, + "platform_guess": "win64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "windows", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/NruUKWIpSn2yredK1yJ6sw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/NruUKWIpSn2yredK1yJ6sw/artifacts/.get deleted file mode 100644 index 89620931..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/NruUKWIpSn2yredK1yJ6sw/artifacts/.get +++ /dev/null @@ -1,226 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T09:57:04.350Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T09:57:04.350Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T09:57:04.350Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T09:57:04.350Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T09:57:04.350Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-12T09:57:04.350Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T09:57:04.350Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T09:57:04.350Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T09:57:04.350Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T09:57:04.350Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T09:57:04.350Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T09:57:04.350Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T09:57:04.350Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.dmg", - "expires": "2020-11-12T09:57:04.350Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T09:57:04.350Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-12T09:57:04.350Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T09:57:04.350Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T09:57:04.350Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-12T09:57:04.350Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T09:57:04.350Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T09:57:04.350Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T09:57:04.350Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T09:57:04.350Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T09:57:04.350Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T09:57:04.350Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T09:57:04.350Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T09:57:04.350Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T09:57:04.350Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T09:57:04.350Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T09:57:04.350Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-12T09:57:04.350Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T09:57:04.350Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T09:57:04.350Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T09:57:04.350Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T09:57:04.350Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T09:57:04.350Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T09:57:04.350Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/NruUKWIpSn2yredK1yJ6sw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/NruUKWIpSn2yredK1yJ6sw/artifacts/public/build/target.json deleted file mode 100644 index ef2b44c1..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/NruUKWIpSn2yredK1yJ6sw/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", - "buildid": "20191113095525", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk --target=x86_64-apple-darwin", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "mac-asan", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "2f19e7b646e0a52fa855b75c868f0a3f3a990ad3", - "moz_update_channel": "default", - "target_alias": "x86_64-apple-darwin", - "target_cpu": "x86_64", - "target_os": "darwin", - "target_vendor": "apple" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/NruUKWIpSn2yredK1yJ6sw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/NruUKWIpSn2yredK1yJ6sw/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index da4ac7df..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/NruUKWIpSn2yredK1yJ6sw/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": true, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": false, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": false, - "os": "mac", - "pgo": false, - "platform_guess": "macosx64-asan", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "cocoa", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/NtdM3LKkSQ-FlQFqSkyHMw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/NtdM3LKkSQ-FlQFqSkyHMw/artifacts/.get new file mode 100644 index 00000000..63e35a5a --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/NtdM3LKkSQ-FlQFqSkyHMw/artifacts/.get @@ -0,0 +1,328 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/geckoview-androidTest.apk", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/geckoview_example.apk", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727024623/geckoview-default-armeabi-v7a-80.0.20200727024623.aar", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727024623/geckoview-default-armeabi-v7a-80.0.20200727024623.aar.md5", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727024623/geckoview-default-armeabi-v7a-80.0.20200727024623.aar.sha1", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727024623/geckoview-default-armeabi-v7a-80.0.20200727024623-javadoc.jar", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727024623/geckoview-default-armeabi-v7a-80.0.20200727024623-javadoc.jar.md5", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727024623/geckoview-default-armeabi-v7a-80.0.20200727024623-javadoc.jar.sha1", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727024623/geckoview-default-armeabi-v7a-80.0.20200727024623.pom", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727024623/geckoview-default-armeabi-v7a-80.0.20200727024623.pom.md5", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727024623/geckoview-default-armeabi-v7a-80.0.20200727024623.pom.sha1", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727024623/geckoview-default-armeabi-v7a-80.0.20200727024623-sources.jar", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727024623/geckoview-default-armeabi-v7a-80.0.20200727024623-sources.jar.md5", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727024623/geckoview-default-armeabi-v7a-80.0.20200727024623-sources.jar.sha1", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/xml" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml.md5", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml.sha1", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T02:50:54.566Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/NtdM3LKkSQ-FlQFqSkyHMw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/NtdM3LKkSQ-FlQFqSkyHMw/artifacts/public/build/target.json new file mode 100644 index 00000000..52e27a3c --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/NtdM3LKkSQ-FlQFqSkyHMw/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=arm-linux-androideabi", + "buildid": "20200727024623", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=arm-linux-androideabi", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17 --target=arm-linux-androideabi", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "fennec", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "android-arm", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "321902edb883e7a37efc6b686da6f20894c72f21", + "moz_update_channel": "default", + "target_alias": "arm-unknown-linux-androideabi", + "target_cpu": "arm", + "target_os": "linux-androideabi", + "target_vendor": "unknown" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/NtdM3LKkSQ-FlQFqSkyHMw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/NtdM3LKkSQ-FlQFqSkyHMw/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..1a895df0 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/NtdM3LKkSQ-FlQFqSkyHMw/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,37 @@ +{ + "android_min_sdk": "16", + "appname": "fennec", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 32, + "buildapp": "mobile/android", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": false, + "official": true, + "os": "android", + "pgo": false, + "platform_guess": "android-arm", + "processor": "arm", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": false, + "telemetry": false, + "tests_enabled": true, + "toolkit": "android", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": false +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/O31iN2ScQcCoEDmpQwFJLw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/O31iN2ScQcCoEDmpQwFJLw/artifacts/.get deleted file mode 100644 index eab8f012..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/O31iN2ScQcCoEDmpQwFJLw/artifacts/.get +++ /dev/null @@ -1,316 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/geckoview-androidTest.apk", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/geckoview_example.apk", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113142032/geckoview-default-armeabi-v7a-72.0.20191113142032-javadoc.jar", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113142032/geckoview-default-armeabi-v7a-72.0.20191113142032-javadoc.jar.md5", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113142032/geckoview-default-armeabi-v7a-72.0.20191113142032-javadoc.jar.sha1", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113142032/geckoview-default-armeabi-v7a-72.0.20191113142032-sources.jar", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113142032/geckoview-default-armeabi-v7a-72.0.20191113142032-sources.jar.md5", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113142032/geckoview-default-armeabi-v7a-72.0.20191113142032-sources.jar.sha1", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113142032/geckoview-default-armeabi-v7a-72.0.20191113142032.aar", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113142032/geckoview-default-armeabi-v7a-72.0.20191113142032.aar.md5", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113142032/geckoview-default-armeabi-v7a-72.0.20191113142032.aar.sha1", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113142032/geckoview-default-armeabi-v7a-72.0.20191113142032.pom", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113142032/geckoview-default-armeabi-v7a-72.0.20191113142032.pom.md5", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113142032/geckoview-default-armeabi-v7a-72.0.20191113142032.pom.sha1", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/xml" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml.md5", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml.sha1", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T14:23:00.982Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/O31iN2ScQcCoEDmpQwFJLw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/O31iN2ScQcCoEDmpQwFJLw/artifacts/public/build/target.json deleted file mode 100644 index d398cf9c..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/O31iN2ScQcCoEDmpQwFJLw/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=arm-linux-androideabi", - "buildid": "20191113142032", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=arm-linux-androideabi", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ --target=arm-linux-androideabi", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "fennec", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "android-arm", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "85bbe38473dc74b3b5e9a1d183e42698ddf62f7f", - "moz_update_channel": "default", - "target_alias": "arm-unknown-linux-androideabi", - "target_cpu": "arm", - "target_os": "linux-androideabi", - "target_vendor": "unknown" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/O31iN2ScQcCoEDmpQwFJLw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/O31iN2ScQcCoEDmpQwFJLw/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 7a6006b1..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/O31iN2ScQcCoEDmpQwFJLw/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "allow_legacy_extensions": true, - "android_min_sdk": "16", - "appname": "fennec", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 32, - "buildapp": "mobile/android", - "buildtype_guess": "debug", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": false, - "official": true, - "os": "android", - "pgo": false, - "platform_guess": "android-arm", - "processor": "arm", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": false, - "telemetry": false, - "tests_enabled": true, - "toolkit": "android", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/O7uWNqWwSR-8PUnRG8vC-w/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/O7uWNqWwSR-8PUnRG8vC-w/artifacts/.get new file mode 100644 index 00000000..ef0a98b1 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/O7uWNqWwSR-8PUnRG8vC-w/artifacts/.get @@ -0,0 +1,250 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.normandy.json", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T02:50:54.844Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/O7uWNqWwSR-8PUnRG8vC-w/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/O7uWNqWwSR-8PUnRG8vC-w/artifacts/public/build/target.json new file mode 100644 index 00000000..334f1405 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/O7uWNqWwSR-8PUnRG8vC-w/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "buildid": "20200727024623", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-x86_64-tsan", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "321902edb883e7a37efc6b686da6f20894c72f21", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/O7uWNqWwSR-8PUnRG8vC-w/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/O7uWNqWwSR-8PUnRG8vC-w/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..ea907cb4 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/O7uWNqWwSR-8PUnRG8vC-w/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": false, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": false, + "os": "linux", + "pgo": false, + "platform_guess": "linux64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": true, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/OGQdCEY0QWK-ndVafNGh5Q/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/OGQdCEY0QWK-ndVafNGh5Q/artifacts/.get deleted file mode 100644 index c5d26217..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/OGQdCEY0QWK-ndVafNGh5Q/artifacts/.get +++ /dev/null @@ -1,250 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "text/html; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar.exe", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff.exe", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/install/sea/target.installer.exe", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/setup.exe", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.zip", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T00:03:45.424Z", - "contentType": "application/octet-stream" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/OGQdCEY0QWK-ndVafNGh5Q/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/OGQdCEY0QWK-ndVafNGh5Q/artifacts/public/build/target.json deleted file mode 100644 index 2354f1fa..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/OGQdCEY0QWK-ndVafNGh5Q/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "z:/build/build/src/vs2017_15.8.4/VC/bin/HostX64/x64/ml64.exe", - "buildid": "20191113000048", - "cc": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe -Xclang -std=gnu99", - "cxx": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe", - "host_alias": "x86_64-pc-mingw32", - "host_cpu": "x86_64", - "host_os": "mingw32", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "win64", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "77b18bc38fcfb26cbd1df38bc67ec840399a87e0", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-mingw32", - "target_cpu": "x86_64", - "target_os": "mingw32", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/OGQdCEY0QWK-ndVafNGh5Q/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/OGQdCEY0QWK-ndVafNGh5Q/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index c2b213bf..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/OGQdCEY0QWK-ndVafNGh5Q/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": ".exe", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang-cl", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "z:/build/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "win", - "pgo": false, - "platform_guess": "win64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "windows", - "topsrcdir": "z:/build/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/OSj9EAeOT0qMSEmeID_bOQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/OSj9EAeOT0qMSEmeID_bOQ/artifacts/.get deleted file mode 100644 index fd919444..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/OSj9EAeOT0qMSEmeID_bOQ/artifacts/.get +++ /dev/null @@ -1,238 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.dmg", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T00:03:45.420Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/OSj9EAeOT0qMSEmeID_bOQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/OSj9EAeOT0qMSEmeID_bOQ/artifacts/public/build/target.json deleted file mode 100644 index a7bf1e5e..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/OSj9EAeOT0qMSEmeID_bOQ/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", - "buildid": "20191113000048", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk --target=x86_64-apple-darwin", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "mac", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "77b18bc38fcfb26cbd1df38bc67ec840399a87e0", - "moz_update_channel": "default", - "target_alias": "x86_64-apple-darwin", - "target_cpu": "x86_64", - "target_os": "darwin", - "target_vendor": "apple" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/OSj9EAeOT0qMSEmeID_bOQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/OSj9EAeOT0qMSEmeID_bOQ/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 9a5fff6e..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/OSj9EAeOT0qMSEmeID_bOQ/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "mac", - "pgo": false, - "platform_guess": "macosx64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "cocoa", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/OZlJNK40RJy9Z0svwjyegg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/OZlJNK40RJy9Z0svwjyegg/artifacts/.get deleted file mode 100644 index 16c9abde..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/OZlJNK40RJy9Z0svwjyegg/artifacts/.get +++ /dev/null @@ -1,244 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "text/html; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar.exe", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff.exe", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/install/sea/target.installer.exe", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/setup.exe", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.zip", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T14:03:21.783Z", - "contentType": "application/octet-stream" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/OZlJNK40RJy9Z0svwjyegg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/OZlJNK40RJy9Z0svwjyegg/artifacts/public/build/target.json deleted file mode 100644 index 3086f8f2..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/OZlJNK40RJy9Z0svwjyegg/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "z:/build/build/src/vs2017_15.8.4/VC/bin/HostX64/x64/ml64.exe", - "buildid": "20191113140055", - "cc": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe -Xclang -std=gnu99", - "cxx": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe", - "host_alias": "x86_64-pc-mingw32", - "host_cpu": "x86_64", - "host_os": "mingw32", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "70.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "70.0.2", - "moz_pkg_platform": "win64", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "2e701e455f3046799141b8be67c79a73291f0bff", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-mingw32", - "target_cpu": "x86_64", - "target_os": "mingw32", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/OZlJNK40RJy9Z0svwjyegg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/OZlJNK40RJy9Z0svwjyegg/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index cad1aa21..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/OZlJNK40RJy9Z0svwjyegg/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,36 +0,0 @@ -{ - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": ".exe", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "cc_type": "clang-cl", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "z:/build/build/src/.mozconfig", - "nightly_build": false, - "normandy": true, - "official": true, - "os": "win", - "pgo": false, - "platform_guess": "win64", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": true, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "windows", - "topsrcdir": "z:/build/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/OmdpCblNQDujjDDOzsiI2A/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/OmdpCblNQDujjDDOzsiI2A/artifacts/.get deleted file mode 100644 index bdf2c61c..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/OmdpCblNQDujjDDOzsiI2A/artifacts/.get +++ /dev/null @@ -1,226 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T15:28:25.846Z", - "contentType": "text/html; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T15:28:25.846Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T15:28:25.846Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T15:28:25.846Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar.exe", - "expires": "2019-12-11T15:28:25.846Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff.exe", - "expires": "2019-12-11T15:28:25.846Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/install/sea/target.installer.exe", - "expires": "2019-12-11T15:28:25.846Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T15:28:25.846Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T15:28:25.846Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/setup.exe", - "expires": "2019-12-11T15:28:25.846Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T15:28:25.846Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T15:28:25.846Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T15:28:25.846Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T15:28:25.846Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T15:28:25.846Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2019-12-11T15:28:25.846Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T15:28:25.846Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T15:28:25.846Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T15:28:25.846Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T15:28:25.846Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T15:28:25.846Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T15:28:25.846Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T15:28:25.846Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T15:28:25.846Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T15:28:25.846Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T15:28:25.846Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T15:28:25.846Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T15:28:25.846Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.zip", - "expires": "2019-12-11T15:28:25.846Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T15:28:25.846Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2019-12-11T15:28:25.846Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T15:28:25.846Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T15:28:25.846Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T15:28:25.846Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T15:28:25.846Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T15:28:25.846Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T15:28:25.846Z", - "contentType": "application/octet-stream" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/OmdpCblNQDujjDDOzsiI2A/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/OmdpCblNQDujjDDOzsiI2A/artifacts/public/build/target.json deleted file mode 100644 index e155828b..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/OmdpCblNQDujjDDOzsiI2A/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "", - "buildid": "20191113152610", - "cc": "", - "cxx": "", - "host_alias": "x86_64-pc-mingw32", - "host_cpu": "x86_64", - "host_os": "mingw32", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "win64", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "fc1f062533c41f097e9dd166d7632105b146b899", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-mingw32", - "target_cpu": "x86_64", - "target_os": "mingw32", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/OmdpCblNQDujjDDOzsiI2A/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/OmdpCblNQDujjDDOzsiI2A/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index c8c684c3..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/OmdpCblNQDujjDDOzsiI2A/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": true, - "asan": false, - "bin_suffix": ".exe", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": null, - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "z:/build/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "win", - "pgo": false, - "platform_guess": "win64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "windows", - "topsrcdir": "z:/build/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/OnEnOx5SQYG17809Uz0JsQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/OnEnOx5SQYG17809Uz0JsQ/artifacts/.get new file mode 100644 index 00000000..87486c52 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/OnEnOx5SQYG17809Uz0JsQ/artifacts/.get @@ -0,0 +1,328 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/geckoview-androidTest.apk", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/geckoview_example.apk", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727134637/geckoview-default-armeabi-v7a-80.0.20200727134637.aar", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727134637/geckoview-default-armeabi-v7a-80.0.20200727134637.aar.md5", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727134637/geckoview-default-armeabi-v7a-80.0.20200727134637.aar.sha1", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727134637/geckoview-default-armeabi-v7a-80.0.20200727134637-javadoc.jar", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727134637/geckoview-default-armeabi-v7a-80.0.20200727134637-javadoc.jar.md5", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727134637/geckoview-default-armeabi-v7a-80.0.20200727134637-javadoc.jar.sha1", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727134637/geckoview-default-armeabi-v7a-80.0.20200727134637.pom", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727134637/geckoview-default-armeabi-v7a-80.0.20200727134637.pom.md5", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727134637/geckoview-default-armeabi-v7a-80.0.20200727134637.pom.sha1", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727134637/geckoview-default-armeabi-v7a-80.0.20200727134637-sources.jar", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727134637/geckoview-default-armeabi-v7a-80.0.20200727134637-sources.jar.md5", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727134637/geckoview-default-armeabi-v7a-80.0.20200727134637-sources.jar.sha1", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/xml" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml.md5", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml.sha1", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T13:52:34.850Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/OnEnOx5SQYG17809Uz0JsQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/OnEnOx5SQYG17809Uz0JsQ/artifacts/public/build/target.json new file mode 100644 index 00000000..fe61c4a6 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/OnEnOx5SQYG17809Uz0JsQ/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=arm-linux-androideabi", + "buildid": "20200727134637", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=arm-linux-androideabi", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17 --target=arm-linux-androideabi", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "fennec", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "android-arm", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "fd56c548bf68b70f8a4bbfbf553fdfc83c9cf956", + "moz_update_channel": "default", + "target_alias": "arm-unknown-linux-androideabi", + "target_cpu": "arm", + "target_os": "linux-androideabi", + "target_vendor": "unknown" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/OnEnOx5SQYG17809Uz0JsQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/OnEnOx5SQYG17809Uz0JsQ/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..1a895df0 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/OnEnOx5SQYG17809Uz0JsQ/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,37 @@ +{ + "android_min_sdk": "16", + "appname": "fennec", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 32, + "buildapp": "mobile/android", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": false, + "official": true, + "os": "android", + "pgo": false, + "platform_guess": "android-arm", + "processor": "arm", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": false, + "telemetry": false, + "tests_enabled": true, + "toolkit": "android", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": false +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/P1Rv4BljTAuUkmdl8y9bhw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/P1Rv4BljTAuUkmdl8y9bhw/artifacts/.get deleted file mode 100644 index 97c11b35..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/P1Rv4BljTAuUkmdl8y9bhw/artifacts/.get +++ /dev/null @@ -1,214 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T16:13:29.836Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T16:13:29.836Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T16:13:29.836Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T16:13:29.836Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2019-12-11T16:13:29.836Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2019-12-11T16:13:29.836Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T16:13:29.836Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T16:13:29.836Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T16:13:29.836Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T16:13:29.836Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T16:13:29.836Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T16:13:29.836Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T16:13:29.836Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2019-12-11T16:13:29.836Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.dmg", - "expires": "2019-12-11T16:13:29.836Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T16:13:29.836Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T16:13:29.836Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T16:13:29.836Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T16:13:29.836Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T16:13:29.836Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T16:13:29.836Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T16:13:29.836Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T16:13:29.836Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T16:13:29.836Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T16:13:29.836Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T16:13:29.836Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T16:13:29.836Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T16:13:29.836Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2019-12-11T16:13:29.836Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T16:13:29.836Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T16:13:29.836Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T16:13:29.836Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T16:13:29.836Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T16:13:29.836Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T16:13:29.836Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/P1Rv4BljTAuUkmdl8y9bhw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/P1Rv4BljTAuUkmdl8y9bhw/artifacts/public/build/target.json deleted file mode 100644 index d9e9c20e..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/P1Rv4BljTAuUkmdl8y9bhw/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "", - "buildid": "20191113161120", - "cc": "", - "cxx": "", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "mac", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "a6face7a81f48e3e68d32933665d9dd389dc8cbd", - "moz_update_channel": "default", - "target_alias": "x86_64-apple-darwin", - "target_cpu": "x86_64", - "target_os": "darwin", - "target_vendor": "apple" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/P1Rv4BljTAuUkmdl8y9bhw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/P1Rv4BljTAuUkmdl8y9bhw/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 5c31e94a..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/P1Rv4BljTAuUkmdl8y9bhw/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": true, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "cc_type": null, - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "mac", - "pgo": false, - "platform_guess": "macosx64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "cocoa", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/P8_ZisP9SX2ODpDuXZfUHA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/P8_ZisP9SX2ODpDuXZfUHA/artifacts/.get deleted file mode 100644 index 45991c48..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/P8_ZisP9SX2ODpDuXZfUHA/artifacts/.get +++ /dev/null @@ -1,316 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/geckoview-androidTest.apk", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/geckoview_example.apk", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113044959/geckoview-default-x86-72.0.20191113044959-javadoc.jar", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113044959/geckoview-default-x86-72.0.20191113044959-javadoc.jar.md5", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113044959/geckoview-default-x86-72.0.20191113044959-javadoc.jar.sha1", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113044959/geckoview-default-x86-72.0.20191113044959-sources.jar", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113044959/geckoview-default-x86-72.0.20191113044959-sources.jar.md5", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113044959/geckoview-default-x86-72.0.20191113044959-sources.jar.sha1", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113044959/geckoview-default-x86-72.0.20191113044959.aar", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113044959/geckoview-default-x86-72.0.20191113044959.aar.md5", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113044959/geckoview-default-x86-72.0.20191113044959.aar.sha1", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113044959/geckoview-default-x86-72.0.20191113044959.pom", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113044959/geckoview-default-x86-72.0.20191113044959.pom.md5", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113044959/geckoview-default-x86-72.0.20191113044959.pom.sha1", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/xml" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml.md5", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml.sha1", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T04:51:48.661Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/P8_ZisP9SX2ODpDuXZfUHA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/P8_ZisP9SX2ODpDuXZfUHA/artifacts/public/build/target.json deleted file mode 100644 index b11c9132..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/P8_ZisP9SX2ODpDuXZfUHA/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=i686-linux-android", - "buildid": "20191113044959", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=i686-linux-android", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ --target=i686-linux-android", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "fennec", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "android-i686", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "48a708577712a2eb1b19aafcda25b2aa0e607629", - "moz_update_channel": "default", - "target_alias": "i686-pc-linux-android", - "target_cpu": "i686", - "target_os": "linux-android", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/P8_ZisP9SX2ODpDuXZfUHA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/P8_ZisP9SX2ODpDuXZfUHA/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index cb8f2cdc..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/P8_ZisP9SX2ODpDuXZfUHA/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "allow_legacy_extensions": true, - "android_min_sdk": "16", - "appname": "fennec", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 32, - "buildapp": "mobile/android", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": false, - "official": true, - "os": "android", - "pgo": false, - "platform_guess": "android-x86", - "processor": "x86", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": false, - "telemetry": false, - "tests_enabled": true, - "toolkit": "android", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/PBHyPfFgQoO_BrA29NWEtQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/PBHyPfFgQoO_BrA29NWEtQ/artifacts/.get deleted file mode 100644 index de52c186..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/PBHyPfFgQoO_BrA29NWEtQ/artifacts/.get +++ /dev/null @@ -1,244 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/chrome-map.json", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.code-coverage-gcno.zip", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T04:51:48.685Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/PBHyPfFgQoO_BrA29NWEtQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/PBHyPfFgQoO_BrA29NWEtQ/artifacts/public/build/target.json deleted file mode 100644 index 441a6786..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/PBHyPfFgQoO_BrA29NWEtQ/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/gcc/bin/gcc -std=gnu99", - "buildid": "20191113044959", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/gcc/bin/gcc -std=gnu99", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/gcc/bin/g++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "linux-x86_64", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "48a708577712a2eb1b19aafcda25b2aa0e607629", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/PBHyPfFgQoO_BrA29NWEtQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/PBHyPfFgQoO_BrA29NWEtQ/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index cdb6e35a..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/PBHyPfFgQoO_BrA29NWEtQ/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "gcc", - "ccov": true, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/PG82j7WlT-aoE4vlocn66g/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/PG82j7WlT-aoE4vlocn66g/artifacts/.get new file mode 100644 index 00000000..609a8e95 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/PG82j7WlT-aoE4vlocn66g/artifacts/.get @@ -0,0 +1,250 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.normandy.json", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T03:36:23.565Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/PG82j7WlT-aoE4vlocn66g/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/PG82j7WlT-aoE4vlocn66g/artifacts/public/build/target.json new file mode 100644 index 00000000..fb43ba68 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/PG82j7WlT-aoE4vlocn66g/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "buildid": "20200727033000", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-x86_64-tsan", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "56082fc4acfacba40993e47ef8302993c59e264e", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/PG82j7WlT-aoE4vlocn66g/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/PG82j7WlT-aoE4vlocn66g/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..ea907cb4 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/PG82j7WlT-aoE4vlocn66g/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": false, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": false, + "os": "linux", + "pgo": false, + "platform_guess": "linux64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": true, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/PW2t8ekFTs2u4yrFVzmksQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/PW2t8ekFTs2u4yrFVzmksQ/artifacts/.get new file mode 100644 index 00000000..5c3efdc2 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/PW2t8ekFTs2u4yrFVzmksQ/artifacts/.get @@ -0,0 +1,232 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/geckoview-androidTest.apk", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/geckoview_example.apk", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727134637/geckoview-default-x86-80.0.20200727134637.aar", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727134637/geckoview-default-x86-80.0.20200727134637.aar.md5", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727134637/geckoview-default-x86-80.0.20200727134637.aar.sha1", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727134637/geckoview-default-x86-80.0.20200727134637-javadoc.jar", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727134637/geckoview-default-x86-80.0.20200727134637-javadoc.jar.md5", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727134637/geckoview-default-x86-80.0.20200727134637-javadoc.jar.sha1", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727134637/geckoview-default-x86-80.0.20200727134637.pom", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727134637/geckoview-default-x86-80.0.20200727134637.pom.md5", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727134637/geckoview-default-x86-80.0.20200727134637.pom.sha1", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727134637/geckoview-default-x86-80.0.20200727134637-sources.jar", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727134637/geckoview-default-x86-80.0.20200727134637-sources.jar.md5", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727134637/geckoview-default-x86-80.0.20200727134637-sources.jar.sha1", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "application/xml" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml.md5", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml.sha1", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T13:52:34.870Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/PW2t8ekFTs2u4yrFVzmksQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/PW2t8ekFTs2u4yrFVzmksQ/artifacts/public/build/target.json new file mode 100644 index 00000000..6a972aa5 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/PW2t8ekFTs2u4yrFVzmksQ/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=i686-linux-android", + "buildid": "20200727134637", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=i686-linux-android", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17 --target=i686-linux-android", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "fennec", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "android-i686-fuzzing", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "fd56c548bf68b70f8a4bbfbf553fdfc83c9cf956", + "moz_update_channel": "default", + "target_alias": "i686-pc-linux-android", + "target_cpu": "i686", + "target_os": "linux-android", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/PW2t8ekFTs2u4yrFVzmksQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/PW2t8ekFTs2u4yrFVzmksQ/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..1e2e994a --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/PW2t8ekFTs2u4yrFVzmksQ/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,37 @@ +{ + "android_min_sdk": "16", + "appname": "fennec", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 32, + "buildapp": "mobile/android", + "buildtype_guess": "debug", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": true, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": false, + "official": true, + "os": "android", + "pgo": false, + "platform_guess": "android-x86", + "processor": "x86", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": false, + "telemetry": false, + "tests_enabled": true, + "toolkit": "android", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": false +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/PYdVrPL4QI2ODE5JrH4JMw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/PYdVrPL4QI2ODE5JrH4JMw/artifacts/.get deleted file mode 100644 index 4916d097..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/PYdVrPL4QI2ODE5JrH4JMw/artifacts/.get +++ /dev/null @@ -1,214 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T00:03:45.366Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T00:03:45.366Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T00:03:45.366Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T00:03:45.366Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2019-12-11T00:03:45.366Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2019-12-11T00:03:45.366Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T00:03:45.366Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T00:03:45.366Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T00:03:45.366Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T00:03:45.366Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T00:03:45.366Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T00:03:45.366Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T00:03:45.366Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2019-12-11T00:03:45.366Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2019-12-11T00:03:45.366Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2019-12-11T00:03:45.366Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T00:03:45.366Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T00:03:45.366Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2019-12-11T00:03:45.366Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T00:03:45.366Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T00:03:45.366Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T00:03:45.366Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T00:03:45.366Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T00:03:45.366Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2019-12-11T00:03:45.366Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T00:03:45.366Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T00:03:45.366Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T00:03:45.366Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T00:03:45.366Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T00:03:45.366Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T00:03:45.366Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2019-12-11T00:03:45.366Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T00:03:45.366Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T00:03:45.366Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T00:03:45.366Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/PYdVrPL4QI2ODE5JrH4JMw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/PYdVrPL4QI2ODE5JrH4JMw/artifacts/public/build/target.json deleted file mode 100644 index 6e9efaba..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/PYdVrPL4QI2ODE5JrH4JMw/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "buildid": "20191113000048", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "linux-x86_64", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "77b18bc38fcfb26cbd1df38bc67ec840399a87e0", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/PYdVrPL4QI2ODE5JrH4JMw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/PYdVrPL4QI2ODE5JrH4JMw/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 51718130..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/PYdVrPL4QI2ODE5JrH4JMw/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/PgetXPV3Tx6gowAdq5CnFg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/PgetXPV3Tx6gowAdq5CnFg/artifacts/.get new file mode 100644 index 00000000..399510be --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/PgetXPV3Tx6gowAdq5CnFg/artifacts/.get @@ -0,0 +1,166 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T03:36:23.667Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T03:36:23.667Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T03:36:23.667Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T03:36:23.667Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2021-07-27T03:36:23.667Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2021-07-27T03:36:23.667Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T03:36:23.667Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T03:36:23.667Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T03:36:23.667Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.codesign-entitlements.zip", + "expires": "2021-07-27T03:36:23.667Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2021-07-27T03:36:23.667Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T03:36:23.667Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.dmg", + "expires": "2021-07-27T03:36:23.667Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T03:36:23.667Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T03:36:23.667Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T03:36:23.667Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T03:36:23.667Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T03:36:23.667Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T03:36:23.667Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T03:36:23.667Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2021-07-27T03:36:23.667Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T03:36:23.667Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T03:36:23.667Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T03:36:23.667Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T03:36:23.667Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T03:36:23.667Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T03:36:23.667Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/PgetXPV3Tx6gowAdq5CnFg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/PgetXPV3Tx6gowAdq5CnFg/artifacts/public/build/target.json new file mode 100644 index 00000000..d2e427a5 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/PgetXPV3Tx6gowAdq5CnFg/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/checkouts/gecko/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", + "buildid": "20200727033000", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/checkouts/gecko/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -isysroot /builds/worker/checkouts/gecko/MacOSX10.11.sdk -std=gnu++17 --target=x86_64-apple-darwin", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "mac", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "56082fc4acfacba40993e47ef8302993c59e264e", + "moz_update_channel": "default", + "target_alias": "x86_64-apple-darwin", + "target_cpu": "x86_64", + "target_os": "darwin", + "target_vendor": "apple" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/PgetXPV3Tx6gowAdq5CnFg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/PgetXPV3Tx6gowAdq5CnFg/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..2934edae --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/PgetXPV3Tx6gowAdq5CnFg/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "mac", + "pgo": false, + "platform_guess": "macosx64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "cocoa", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Pxm7LzhTRRCD1hrpwJD8JA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/Pxm7LzhTRRCD1hrpwJD8JA/artifacts/.get deleted file mode 100644 index a20481a3..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Pxm7LzhTRRCD1hrpwJD8JA/artifacts/.get +++ /dev/null @@ -1,238 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.dmg", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T09:57:03.740Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Pxm7LzhTRRCD1hrpwJD8JA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/Pxm7LzhTRRCD1hrpwJD8JA/artifacts/public/build/target.json deleted file mode 100644 index bd5edb62..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Pxm7LzhTRRCD1hrpwJD8JA/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", - "buildid": "20191113095525", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk --target=x86_64-apple-darwin", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "mac", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "2f19e7b646e0a52fa855b75c868f0a3f3a990ad3", - "moz_update_channel": "default", - "target_alias": "x86_64-apple-darwin", - "target_cpu": "x86_64", - "target_os": "darwin", - "target_vendor": "apple" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/Pxm7LzhTRRCD1hrpwJD8JA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/Pxm7LzhTRRCD1hrpwJD8JA/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 9a5fff6e..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Pxm7LzhTRRCD1hrpwJD8JA/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "mac", - "pgo": false, - "platform_guess": "macosx64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "cocoa", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Q0vOupcdTxeAMbcuR_dULw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/Q0vOupcdTxeAMbcuR_dULw/artifacts/.get deleted file mode 100644 index cd5f43cd..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Q0vOupcdTxeAMbcuR_dULw/artifacts/.get +++ /dev/null @@ -1,226 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T04:51:50.373Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T04:51:50.373Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T04:51:50.373Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T04:51:50.373Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T04:51:50.373Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-12T04:51:50.373Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T04:51:50.373Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T04:51:50.373Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T04:51:50.373Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T04:51:50.373Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T04:51:50.373Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T04:51:50.373Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T04:51:50.373Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T04:51:50.373Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-12T04:51:50.373Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T04:51:50.373Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T04:51:50.373Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-12T04:51:50.373Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T04:51:50.373Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T04:51:50.373Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T04:51:50.373Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T04:51:50.373Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T04:51:50.373Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-11-12T04:51:50.373Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T04:51:50.373Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T04:51:50.373Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T04:51:50.373Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T04:51:50.373Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T04:51:50.373Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T04:51:50.373Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-11-12T04:51:50.373Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T04:51:50.373Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T04:51:50.373Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T04:51:50.373Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T04:51:50.373Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T04:51:50.373Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T04:51:50.373Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Q0vOupcdTxeAMbcuR_dULw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/Q0vOupcdTxeAMbcuR_dULw/artifacts/public/build/target.json deleted file mode 100644 index f652ab3b..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Q0vOupcdTxeAMbcuR_dULw/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "buildid": "20191113044959", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "linux-x86_64-asan", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "48a708577712a2eb1b19aafcda25b2aa0e607629", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/Q0vOupcdTxeAMbcuR_dULw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/Q0vOupcdTxeAMbcuR_dULw/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 3162c70d..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Q0vOupcdTxeAMbcuR_dULw/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": true, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": false, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": false, - "os": "linux", - "pgo": false, - "platform_guess": "linux64-asan", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": true, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Q17ON-95TxWO4UW586dv_w/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/Q17ON-95TxWO4UW586dv_w/artifacts/.get deleted file mode 100644 index 80bbec52..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Q17ON-95TxWO4UW586dv_w/artifacts/.get +++ /dev/null @@ -1,214 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-11T03:09:35.418Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-11T03:09:35.418Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-11T03:09:35.418Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-11T03:09:35.418Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-11T03:09:35.418Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-11T03:09:35.418Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-11T03:09:35.418Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-11T03:09:35.418Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.418Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-11T03:09:35.418Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-11T03:09:35.418Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.dmg", - "expires": "2020-11-11T03:09:35.418Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-11T03:09:35.418Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.418Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-11T03:09:35.418Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-11T03:09:35.418Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-11T03:09:35.418Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.418Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-11T03:09:35.418Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-11T03:09:35.418Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.418Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-11T03:09:35.418Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-11T03:09:35.418Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-11T03:09:35.418Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-11T03:09:35.418Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-11T03:09:35.418Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-11T03:09:35.418Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-11T03:09:35.418Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-11T03:09:35.418Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-11T03:09:35.418Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-11T03:09:35.418Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-11T03:09:35.418Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-11T03:09:35.418Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-11T03:09:35.418Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-11T03:09:35.418Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Q17ON-95TxWO4UW586dv_w/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/Q17ON-95TxWO4UW586dv_w/artifacts/public/build/target.json deleted file mode 100644 index bb347d35..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Q17ON-95TxWO4UW586dv_w/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/workspace/build/src/clang/bin/clang -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99 --target=x86_64-darwin11", - "buildid": "20191112030804", - "cc": "/builds/worker/workspace/build/src/clang/bin/clang -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99 --target=x86_64-darwin11", - "cxx": "/builds/worker/workspace/build/src/clang/bin/clang++ -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk --target=x86_64-darwin11", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "68.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "68.2.1", - "moz_pkg_platform": "mac", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr68", - "moz_source_stamp": "506341a9f6a39813794bca976bf298963eeebf7e", - "moz_update_channel": "default", - "target_alias": "x86_64-apple-darwin11", - "target_cpu": "x86_64", - "target_os": "darwin11", - "target_vendor": "apple" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/Q17ON-95TxWO4UW586dv_w/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/Q17ON-95TxWO4UW586dv_w/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index a6122070..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Q17ON-95TxWO4UW586dv_w/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": true, - "os": "mac", - "pgo": false, - "platform_guess": "macosx64", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "cocoa", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Q5Nn9JbiQoWYEsz9QWBWHg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/Q5Nn9JbiQoWYEsz9QWBWHg/artifacts/.get deleted file mode 100644 index 602db082..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Q5Nn9JbiQoWYEsz9QWBWHg/artifacts/.get +++ /dev/null @@ -1,226 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T00:03:46.512Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T00:03:46.512Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T00:03:46.512Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T00:03:46.512Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2019-12-11T00:03:46.512Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2019-12-11T00:03:46.512Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T00:03:46.512Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T00:03:46.512Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T00:03:46.512Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T00:03:46.512Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T00:03:46.512Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T00:03:46.512Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T00:03:46.512Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2019-12-11T00:03:46.512Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2019-12-11T00:03:46.512Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T00:03:46.512Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T00:03:46.512Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2019-12-11T00:03:46.512Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T00:03:46.512Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T00:03:46.512Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T00:03:46.512Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T00:03:46.512Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T00:03:46.512Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2019-12-11T00:03:46.512Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T00:03:46.512Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T00:03:46.512Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T00:03:46.512Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T00:03:46.512Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T00:03:46.512Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T00:03:46.512Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2019-12-11T00:03:46.512Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T00:03:46.512Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T00:03:46.512Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T00:03:46.512Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T00:03:46.512Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T00:03:46.512Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T00:03:46.512Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Q5Nn9JbiQoWYEsz9QWBWHg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/Q5Nn9JbiQoWYEsz9QWBWHg/artifacts/public/build/target.json deleted file mode 100644 index b652ed79..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Q5Nn9JbiQoWYEsz9QWBWHg/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "buildid": "20191113000048", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "linux-x86_64-asan", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "77b18bc38fcfb26cbd1df38bc67ec840399a87e0", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/Q5Nn9JbiQoWYEsz9QWBWHg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/Q5Nn9JbiQoWYEsz9QWBWHg/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 3162c70d..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Q5Nn9JbiQoWYEsz9QWBWHg/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": true, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": false, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": false, - "os": "linux", - "pgo": false, - "platform_guess": "linux64-asan", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": true, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Q60nwQ2bRhaRWfcTWOmJKw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/Q60nwQ2bRhaRWfcTWOmJKw/artifacts/.get deleted file mode 100644 index e5472c48..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Q60nwQ2bRhaRWfcTWOmJKw/artifacts/.get +++ /dev/null @@ -1,238 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T04:51:48.652Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Q60nwQ2bRhaRWfcTWOmJKw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/Q60nwQ2bRhaRWfcTWOmJKw/artifacts/public/build/target.json deleted file mode 100644 index 87790a1c..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Q60nwQ2bRhaRWfcTWOmJKw/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 -m32", - "buildid": "20191113044959", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 -m32", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -m32", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "linux-i686", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "48a708577712a2eb1b19aafcda25b2aa0e607629", - "moz_update_channel": "default", - "target_alias": "i686-pc-linux-gnu", - "target_cpu": "i686", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/Q60nwQ2bRhaRWfcTWOmJKw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/Q60nwQ2bRhaRWfcTWOmJKw/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 469b36d8..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Q60nwQ2bRhaRWfcTWOmJKw/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 32, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "linux", - "pgo": false, - "platform_guess": "linux", - "processor": "x86", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/QHkk9pAVQISP2xkEdbRmDg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/QHkk9pAVQISP2xkEdbRmDg/artifacts/.get deleted file mode 100644 index 61c1c81f..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/QHkk9pAVQISP2xkEdbRmDg/artifacts/.get +++ /dev/null @@ -1,310 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/geckoview-androidTest.apk", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/geckoview_example.apk", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113000048/geckoview-default-x86-72.0.20191113000048-javadoc.jar", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113000048/geckoview-default-x86-72.0.20191113000048-javadoc.jar.md5", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113000048/geckoview-default-x86-72.0.20191113000048-javadoc.jar.sha1", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113000048/geckoview-default-x86-72.0.20191113000048-sources.jar", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113000048/geckoview-default-x86-72.0.20191113000048-sources.jar.md5", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113000048/geckoview-default-x86-72.0.20191113000048-sources.jar.sha1", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113000048/geckoview-default-x86-72.0.20191113000048.aar", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113000048/geckoview-default-x86-72.0.20191113000048.aar.md5", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113000048/geckoview-default-x86-72.0.20191113000048.aar.sha1", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113000048/geckoview-default-x86-72.0.20191113000048.pom", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113000048/geckoview-default-x86-72.0.20191113000048.pom.md5", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113000048/geckoview-default-x86-72.0.20191113000048.pom.sha1", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/xml" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml.md5", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml.sha1", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T00:03:47.028Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/QHkk9pAVQISP2xkEdbRmDg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/QHkk9pAVQISP2xkEdbRmDg/artifacts/public/build/target.json deleted file mode 100644 index bda6a32e..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/QHkk9pAVQISP2xkEdbRmDg/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=i686-linux-android", - "buildid": "20191113000048", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=i686-linux-android", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ --target=i686-linux-android", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "fennec", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "android-i686-fuzzing", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "77b18bc38fcfb26cbd1df38bc67ec840399a87e0", - "moz_update_channel": "default", - "target_alias": "i686-pc-linux-android", - "target_cpu": "i686", - "target_os": "linux-android", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/QHkk9pAVQISP2xkEdbRmDg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/QHkk9pAVQISP2xkEdbRmDg/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index e394ea55..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/QHkk9pAVQISP2xkEdbRmDg/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "allow_legacy_extensions": true, - "android_min_sdk": "16", - "appname": "fennec", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 32, - "buildapp": "mobile/android", - "buildtype_guess": "debug", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": false, - "official": true, - "os": "android", - "pgo": false, - "platform_guess": "android-x86", - "processor": "x86", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": false, - "telemetry": false, - "tests_enabled": true, - "toolkit": "android", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/QyNrni4aTMKt74vILhRfzg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/QyNrni4aTMKt74vILhRfzg/artifacts/.get new file mode 100644 index 00000000..b23d20f7 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/QyNrni4aTMKt74vILhRfzg/artifacts/.get @@ -0,0 +1,232 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/geckoview-androidTest.apk", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/geckoview_example.apk", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727095125/geckoview-default-x86-80.0.20200727095125.aar", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727095125/geckoview-default-x86-80.0.20200727095125.aar.md5", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727095125/geckoview-default-x86-80.0.20200727095125.aar.sha1", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727095125/geckoview-default-x86-80.0.20200727095125-javadoc.jar", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727095125/geckoview-default-x86-80.0.20200727095125-javadoc.jar.md5", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727095125/geckoview-default-x86-80.0.20200727095125-javadoc.jar.sha1", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727095125/geckoview-default-x86-80.0.20200727095125.pom", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727095125/geckoview-default-x86-80.0.20200727095125.pom.md5", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727095125/geckoview-default-x86-80.0.20200727095125.pom.sha1", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727095125/geckoview-default-x86-80.0.20200727095125-sources.jar", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727095125/geckoview-default-x86-80.0.20200727095125-sources.jar.md5", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727095125/geckoview-default-x86-80.0.20200727095125-sources.jar.sha1", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "application/xml" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml.md5", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml.sha1", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T09:55:01.074Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/QyNrni4aTMKt74vILhRfzg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/QyNrni4aTMKt74vILhRfzg/artifacts/public/build/target.json new file mode 100644 index 00000000..c23a15d1 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/QyNrni4aTMKt74vILhRfzg/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=i686-linux-android", + "buildid": "20200727095125", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=i686-linux-android", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17 --target=i686-linux-android", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "fennec", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "android-i686-fuzzing", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "798bdad605b985a71cd204a56bb816dea503d432", + "moz_update_channel": "default", + "target_alias": "i686-pc-linux-android", + "target_cpu": "i686", + "target_os": "linux-android", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/QyNrni4aTMKt74vILhRfzg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/QyNrni4aTMKt74vILhRfzg/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..1e2e994a --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/QyNrni4aTMKt74vILhRfzg/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,37 @@ +{ + "android_min_sdk": "16", + "appname": "fennec", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 32, + "buildapp": "mobile/android", + "buildtype_guess": "debug", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": true, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": false, + "official": true, + "os": "android", + "pgo": false, + "platform_guess": "android-x86", + "processor": "x86", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": false, + "telemetry": false, + "tests_enabled": true, + "toolkit": "android", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": false +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/R2NSOq0wT9CEuR9_wnQ0PA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/R2NSOq0wT9CEuR9_wnQ0PA/artifacts/.get new file mode 100644 index 00000000..be9a22f3 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/R2NSOq0wT9CEuR9_wnQ0PA/artifacts/.get @@ -0,0 +1,262 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.normandy.json", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T03:36:23.295Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/R2NSOq0wT9CEuR9_wnQ0PA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/R2NSOq0wT9CEuR9_wnQ0PA/artifacts/public/build/target.json new file mode 100644 index 00000000..6a390297 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/R2NSOq0wT9CEuR9_wnQ0PA/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "buildid": "20200727033000", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-x86_64", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "56082fc4acfacba40993e47ef8302993c59e264e", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/R2NSOq0wT9CEuR9_wnQ0PA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/R2NSOq0wT9CEuR9_wnQ0PA/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..d3c93a6a --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/R2NSOq0wT9CEuR9_wnQ0PA/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "linux", + "pgo": false, + "platform_guess": "linux64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/RN1Jla8wQSyDZIA2qEU1hQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/RN1Jla8wQSyDZIA2qEU1hQ/artifacts/.get new file mode 100644 index 00000000..026cb383 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/RN1Jla8wQSyDZIA2qEU1hQ/artifacts/.get @@ -0,0 +1,256 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/install/sea/target.installer.exe", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/setup.exe", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.zip", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T00:40:19.239Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/RN1Jla8wQSyDZIA2qEU1hQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/RN1Jla8wQSyDZIA2qEU1hQ/artifacts/public/build/target.json new file mode 100644 index 00000000..3c8c0cd8 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/RN1Jla8wQSyDZIA2qEU1hQ/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/checkouts/gecko/vs2017_15.8.4/VC/bin/Hostx64/x64/ml64.exe", + "buildid": "20200727003535", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang-cl -Xclang -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang-cl -Xclang -std=c++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "win64", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "795f8a67fda8045af868f73d74d11b70b874db61", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-mingw32", + "target_cpu": "x86_64", + "target_os": "mingw32", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/RN1Jla8wQSyDZIA2qEU1hQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/RN1Jla8wQSyDZIA2qEU1hQ/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..cb1a38fa --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/RN1Jla8wQSyDZIA2qEU1hQ/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": ".exe", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "debug", + "cc_type": "clang-cl", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": true, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "win", + "pgo": false, + "platform_guess": "win64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "windows", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/RWVs3aoYRZqpJBhT5z0T0w/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/RWVs3aoYRZqpJBhT5z0T0w/artifacts/.get new file mode 100644 index 00000000..26f269f4 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/RWVs3aoYRZqpJBhT5z0T0w/artifacts/.get @@ -0,0 +1,238 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/geckoview-androidTest.apk", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/geckoview_example.apk", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727024623/geckoview-default-x86-80.0.20200727024623.aar", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727024623/geckoview-default-x86-80.0.20200727024623.aar.md5", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727024623/geckoview-default-x86-80.0.20200727024623.aar.sha1", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727024623/geckoview-default-x86-80.0.20200727024623-javadoc.jar", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727024623/geckoview-default-x86-80.0.20200727024623-javadoc.jar.md5", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727024623/geckoview-default-x86-80.0.20200727024623-javadoc.jar.sha1", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727024623/geckoview-default-x86-80.0.20200727024623.pom", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727024623/geckoview-default-x86-80.0.20200727024623.pom.md5", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727024623/geckoview-default-x86-80.0.20200727024623.pom.sha1", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727024623/geckoview-default-x86-80.0.20200727024623-sources.jar", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727024623/geckoview-default-x86-80.0.20200727024623-sources.jar.md5", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727024623/geckoview-default-x86-80.0.20200727024623-sources.jar.sha1", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "application/xml" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml.md5", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml.sha1", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T02:50:54.658Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/RWVs3aoYRZqpJBhT5z0T0w/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/RWVs3aoYRZqpJBhT5z0T0w/artifacts/public/build/target.json new file mode 100644 index 00000000..5f2477f2 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/RWVs3aoYRZqpJBhT5z0T0w/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=i686-linux-android", + "buildid": "20200727024623", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=i686-linux-android", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17 --target=i686-linux-android", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "fennec", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "android-i686", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "321902edb883e7a37efc6b686da6f20894c72f21", + "moz_update_channel": "default", + "target_alias": "i686-pc-linux-android", + "target_cpu": "i686", + "target_os": "linux-android", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/RWVs3aoYRZqpJBhT5z0T0w/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/RWVs3aoYRZqpJBhT5z0T0w/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..f0e655c1 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/RWVs3aoYRZqpJBhT5z0T0w/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,37 @@ +{ + "android_min_sdk": "16", + "appname": "fennec", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 32, + "buildapp": "mobile/android", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": false, + "official": true, + "os": "android", + "pgo": false, + "platform_guess": "android-x86", + "processor": "x86", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": false, + "telemetry": false, + "tests_enabled": true, + "toolkit": "android", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": false +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/RczwfItTTjCYbB9OlhccPg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/RczwfItTTjCYbB9OlhccPg/artifacts/.get deleted file mode 100644 index d5aa364a..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/RczwfItTTjCYbB9OlhccPg/artifacts/.get +++ /dev/null @@ -1,250 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "text/html; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar.exe", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff.exe", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/install/sea/target.installer.exe", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/setup.exe", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.zip", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T04:51:49.933Z", - "contentType": "application/octet-stream" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/RczwfItTTjCYbB9OlhccPg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/RczwfItTTjCYbB9OlhccPg/artifacts/public/build/target.json deleted file mode 100644 index a0a220d2..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/RczwfItTTjCYbB9OlhccPg/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "z:/build/build/src/vs2017_15.9.6/VC/bin/HostX64/arm64/armasm64.exe", - "buildid": "20191113044959", - "cc": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe -Xclang -std=gnu99 --target=aarch64-windows-msvc", - "cxx": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe --target=aarch64-windows-msvc", - "host_alias": "x86_64-pc-mingw32", - "host_cpu": "x86_64", - "host_os": "mingw32", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "win64", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "48a708577712a2eb1b19aafcda25b2aa0e607629", - "moz_update_channel": "default", - "target_alias": "aarch64-windows-mingw32", - "target_cpu": "aarch64", - "target_os": "mingw32", - "target_vendor": "windows" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/RczwfItTTjCYbB9OlhccPg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/RczwfItTTjCYbB9OlhccPg/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index f144abc4..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/RczwfItTTjCYbB9OlhccPg/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": ".exe", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang-cl", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "z:/build/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "win", - "pgo": false, - "platform_guess": "win64", - "processor": "aarch64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "windows", - "topsrcdir": "z:/build/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/RdELVoJ_RIWCfn0c0LJpgw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/RdELVoJ_RIWCfn0c0LJpgw/artifacts/.get deleted file mode 100644 index 947bf514..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/RdELVoJ_RIWCfn0c0LJpgw/artifacts/.get +++ /dev/null @@ -1,250 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "text/html; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar.exe", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff.exe", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/install/sea/target.installer.exe", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/setup.exe", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.zip", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T09:57:03.714Z", - "contentType": "application/octet-stream" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/RdELVoJ_RIWCfn0c0LJpgw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/RdELVoJ_RIWCfn0c0LJpgw/artifacts/public/build/target.json deleted file mode 100644 index ec89318b..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/RdELVoJ_RIWCfn0c0LJpgw/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "z:/build/build/src/vs2017_15.8.4/VC/bin/HostX64/x64/ml64.exe", - "buildid": "20191113095525", - "cc": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe -Xclang -std=gnu99", - "cxx": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe", - "host_alias": "x86_64-pc-mingw32", - "host_cpu": "x86_64", - "host_os": "mingw32", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "win64", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "2f19e7b646e0a52fa855b75c868f0a3f3a990ad3", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-mingw32", - "target_cpu": "x86_64", - "target_os": "mingw32", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/RdELVoJ_RIWCfn0c0LJpgw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/RdELVoJ_RIWCfn0c0LJpgw/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index b0c7e878..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/RdELVoJ_RIWCfn0c0LJpgw/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": ".exe", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "cc_type": "clang-cl", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "z:/build/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "win", - "pgo": false, - "platform_guess": "win64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "windows", - "topsrcdir": "z:/build/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/RnuyytsuQmuySSFQt0y6lw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/RnuyytsuQmuySSFQt0y6lw/artifacts/.get deleted file mode 100644 index c6f3a90e..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/RnuyytsuQmuySSFQt0y6lw/artifacts/.get +++ /dev/null @@ -1,244 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.zip", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.zip", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.zip", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.dmg", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.zip", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.zip", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.zip", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.stylo-bindings.zip", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.zip", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.zip", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/logs/log_critical.log", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_debug.log", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_error.log", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_fatal.log", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_info.log", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_raw.log", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_warning.log", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "text/plain" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/RnuyytsuQmuySSFQt0y6lw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/RnuyytsuQmuySSFQt0y6lw/artifacts/public/build/target.json deleted file mode 100644 index e27509e7..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/RnuyytsuQmuySSFQt0y6lw/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "$(CC)", - "buildid": "20191014131614", - "cc": "/builds/worker/workspace/build/src/clang/bin/clang -target x86_64-apple-darwin11 -B /builds/worker/workspace/build/src/cctools/bin -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99", - "cxx": "/builds/worker/workspace/build/src/clang/bin/clang++ -target x86_64-apple-darwin11 -B /builds/worker/workspace/build/src/cctools/bin -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu++14", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "60.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "60.9.1", - "moz_pkg_platform": "mac", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr60", - "moz_source_stamp": "e67641c2e4ccd1fe2d4cd522b6575adec838697a", - "moz_update_channel": "default", - "target_alias": "x86_64-apple-darwin", - "target_cpu": "x86_64", - "target_os": "darwin", - "target_vendor": "apple" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/RnuyytsuQmuySSFQt0y6lw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/RnuyytsuQmuySSFQt0y6lw/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 1f9f0653..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/RnuyytsuQmuySSFQt0y6lw/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "addon_signing": true, - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": true, - "os": "mac", - "pgo": false, - "platform_guess": "macosx64", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "cocoa", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/RzioZBqsRYGPIYfAmsqe-g/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/RzioZBqsRYGPIYfAmsqe-g/artifacts/.get new file mode 100644 index 00000000..8658d6f5 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/RzioZBqsRYGPIYfAmsqe-g/artifacts/.get @@ -0,0 +1,262 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.normandy.json", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T03:36:23.305Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/RzioZBqsRYGPIYfAmsqe-g/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/RzioZBqsRYGPIYfAmsqe-g/artifacts/public/build/target.json new file mode 100644 index 00000000..6a390297 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/RzioZBqsRYGPIYfAmsqe-g/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "buildid": "20200727033000", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-x86_64", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "56082fc4acfacba40993e47ef8302993c59e264e", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/RzioZBqsRYGPIYfAmsqe-g/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/RzioZBqsRYGPIYfAmsqe-g/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..1d743acb --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/RzioZBqsRYGPIYfAmsqe-g/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "debug", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": true, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "linux", + "pgo": false, + "platform_guess": "linux64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/S2M0wKrlTZevfhp4JiIF0g/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/S2M0wKrlTZevfhp4JiIF0g/artifacts/.get deleted file mode 100644 index 79f21233..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/S2M0wKrlTZevfhp4JiIF0g/artifacts/.get +++ /dev/null @@ -1,214 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T04:51:50.244Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T04:51:50.244Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T04:51:50.244Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T04:51:50.244Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T04:51:50.244Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-12T04:51:50.244Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T04:51:50.244Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T04:51:50.244Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T04:51:50.244Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T04:51:50.244Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T04:51:50.244Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T04:51:50.244Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T04:51:50.244Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-12T04:51:50.244Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T04:51:50.244Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T04:51:50.244Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T04:51:50.244Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T04:51:50.244Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-12T04:51:50.244Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T04:51:50.244Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T04:51:50.244Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T04:51:50.244Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T04:51:50.244Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T04:51:50.244Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-11-12T04:51:50.244Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T04:51:50.244Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T04:51:50.244Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T04:51:50.244Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T04:51:50.244Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T04:51:50.244Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T04:51:50.244Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-11-12T04:51:50.244Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T04:51:50.244Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T04:51:50.244Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T04:51:50.244Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/S2M0wKrlTZevfhp4JiIF0g/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/S2M0wKrlTZevfhp4JiIF0g/artifacts/public/build/target.json deleted file mode 100644 index c0106c2e..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/S2M0wKrlTZevfhp4JiIF0g/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "buildid": "20191113044959", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "linux-x86_64", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "48a708577712a2eb1b19aafcda25b2aa0e607629", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/S2M0wKrlTZevfhp4JiIF0g/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/S2M0wKrlTZevfhp4JiIF0g/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 51718130..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/S2M0wKrlTZevfhp4JiIF0g/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/S3BnJj5jSq6wMLXw0eKhCQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/S3BnJj5jSq6wMLXw0eKhCQ/artifacts/.get new file mode 100644 index 00000000..d83c36da --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/S3BnJj5jSq6wMLXw0eKhCQ/artifacts/.get @@ -0,0 +1,148 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-14T22:41:36.168Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-14T22:41:36.168Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-14T22:41:36.168Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-14T22:41:36.168Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2020-08-14T22:41:36.168Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2020-08-14T22:41:36.168Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-14T22:41:36.168Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-14T22:41:36.168Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-14T22:41:36.168Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2020-08-14T22:41:36.168Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2020-08-14T22:41:36.168Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-14T22:41:36.168Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-14T22:41:36.168Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-14T22:41:36.168Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-14T22:41:36.168Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2020-08-14T22:41:36.168Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-14T22:41:36.168Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.normandy.json", + "expires": "2020-08-14T22:41:36.168Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2020-08-14T22:41:36.168Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-14T22:41:36.168Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2020-08-14T22:41:36.168Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-14T22:41:36.168Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-14T22:41:36.168Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-14T22:41:36.168Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/S3BnJj5jSq6wMLXw0eKhCQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/S3BnJj5jSq6wMLXw0eKhCQ/artifacts/public/build/target.json new file mode 100644 index 00000000..ae79e3e5 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/S3BnJj5jSq6wMLXw0eKhCQ/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "buildid": "20200717223501", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-x86_64", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "826eda1ecfb397809fa2fe7c52e1d37d01be330a", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/S3BnJj5jSq6wMLXw0eKhCQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/S3BnJj5jSq6wMLXw0eKhCQ/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..d3c93a6a --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/S3BnJj5jSq6wMLXw0eKhCQ/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "linux", + "pgo": false, + "platform_guess": "linux64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/SMqzMMQ5QpGDpogbEAz7uQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/SMqzMMQ5QpGDpogbEAz7uQ/artifacts/.get deleted file mode 100644 index 3416d465..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/SMqzMMQ5QpGDpogbEAz7uQ/artifacts/.get +++ /dev/null @@ -1,244 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/chrome-map.json", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.code-coverage-gcno.zip", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T04:51:49.736Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/SMqzMMQ5QpGDpogbEAz7uQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/SMqzMMQ5QpGDpogbEAz7uQ/artifacts/public/build/target.json deleted file mode 100644 index 441a6786..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/SMqzMMQ5QpGDpogbEAz7uQ/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/gcc/bin/gcc -std=gnu99", - "buildid": "20191113044959", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/gcc/bin/gcc -std=gnu99", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/gcc/bin/g++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "linux-x86_64", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "48a708577712a2eb1b19aafcda25b2aa0e607629", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/SMqzMMQ5QpGDpogbEAz7uQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/SMqzMMQ5QpGDpogbEAz7uQ/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index cdb6e35a..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/SMqzMMQ5QpGDpogbEAz7uQ/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "gcc", - "ccov": true, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/SOKM7jKMQsmYR8RY3rjSbA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/SOKM7jKMQsmYR8RY3rjSbA/artifacts/.get deleted file mode 100644 index 35a41c5f..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/SOKM7jKMQsmYR8RY3rjSbA/artifacts/.get +++ /dev/null @@ -1,226 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-01-14T19:18:49.376Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-01-14T19:18:49.376Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-01-14T19:18:49.376Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-01-14T19:18:49.376Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-01-14T19:18:49.376Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-01-14T19:18:49.376Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-01-14T19:18:49.376Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-01-14T19:18:49.376Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-01-14T19:18:49.376Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-01-14T19:18:49.376Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-01-14T19:18:49.376Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-01-14T19:18:49.376Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-01-14T19:18:49.376Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-01-14T19:18:49.376Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-01-14T19:18:49.376Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-01-14T19:18:49.376Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-01-14T19:18:49.376Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-01-14T19:18:49.376Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-01-14T19:18:49.376Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-01-14T19:18:49.376Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-01-14T19:18:49.376Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-01-14T19:18:49.376Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-01-14T19:18:49.376Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-01-14T19:18:49.376Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-01-14T19:18:49.376Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-01-14T19:18:49.376Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-01-14T19:18:49.376Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-01-14T19:18:49.376Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-01-14T19:18:49.376Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-01-14T19:18:49.376Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-01-14T19:18:49.376Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-01-14T19:18:49.376Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-01-14T19:18:49.376Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-01-14T19:18:49.376Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-01-14T19:18:49.376Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-01-14T19:18:49.376Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-01-14T19:18:49.376Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/SOKM7jKMQsmYR8RY3rjSbA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/SOKM7jKMQsmYR8RY3rjSbA/artifacts/public/build/target.json deleted file mode 100644 index 2ab51143..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/SOKM7jKMQsmYR8RY3rjSbA/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "buildid": "20191217191615", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "73.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "73.0a1", - "moz_pkg_platform": "linux-x86_64-tsan", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "93918c6073b0127bdd9b8808ec03c1bf9b795994", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/SOKM7jKMQsmYR8RY3rjSbA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/SOKM7jKMQsmYR8RY3rjSbA/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 73d68511..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/SOKM7jKMQsmYR8RY3rjSbA/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": false, - "datareporting": true, - "debug": false, - "devedition": false, - "early_beta_or_earlier": true, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": false, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": true, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/SXttWpX_TViyQHFkMZ9wdQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/SXttWpX_TViyQHFkMZ9wdQ/artifacts/.get deleted file mode 100644 index def7d0a4..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/SXttWpX_TViyQHFkMZ9wdQ/artifacts/.get +++ /dev/null @@ -1,196 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-11T03:09:35.938Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-11T03:09:35.938Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-11T03:09:35.938Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-11T03:09:35.938Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-11T03:09:35.938Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-11T03:09:35.938Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-11T03:09:35.938Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-11T03:09:35.938Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.938Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-11T03:09:35.938Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-11T03:09:35.938Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-11T03:09:35.938Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-11T03:09:35.938Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-11T03:09:35.938Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-11T03:09:35.938Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.938Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-11T03:09:35.938Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-11T03:09:35.938Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.938Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-11T03:09:35.938Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-11-11T03:09:35.938Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-11T03:09:35.938Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-11T03:09:35.938Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-11T03:09:35.938Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-11T03:09:35.938Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-11T03:09:35.938Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-11T03:09:35.938Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-11T03:09:35.938Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-11-11T03:09:35.938Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-11T03:09:35.938Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-11T03:09:35.938Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-11T03:09:35.938Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/SXttWpX_TViyQHFkMZ9wdQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/SXttWpX_TViyQHFkMZ9wdQ/artifacts/public/build/target.json deleted file mode 100644 index ef096922..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/SXttWpX_TViyQHFkMZ9wdQ/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/workspace/build/src/clang/bin/clang -std=gnu99", - "buildid": "20191112030804", - "cc": "/builds/worker/workspace/build/src/clang/bin/clang -std=gnu99", - "cxx": "/builds/worker/workspace/build/src/clang/bin/clang++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "68.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "68.2.1", - "moz_pkg_platform": "linux-x86_64", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr68", - "moz_source_stamp": "506341a9f6a39813794bca976bf298963eeebf7e", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/SXttWpX_TViyQHFkMZ9wdQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/SXttWpX_TViyQHFkMZ9wdQ/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 8910c919..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/SXttWpX_TViyQHFkMZ9wdQ/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": true, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk3", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/SaB5uv_dTEWIPo575_w3PA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/SaB5uv_dTEWIPo575_w3PA/artifacts/.get new file mode 100644 index 00000000..a3000d35 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/SaB5uv_dTEWIPo575_w3PA/artifacts/.get @@ -0,0 +1,148 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T09:55:01.768Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T09:55:01.768Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T09:55:01.768Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T09:55:01.768Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2021-07-27T09:55:01.768Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2021-07-27T09:55:01.768Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T09:55:01.768Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T09:55:01.768Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T09:55:01.768Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2021-07-27T09:55:01.768Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T09:55:01.768Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T09:55:01.768Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T09:55:01.768Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T09:55:01.768Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T09:55:01.768Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T09:55:01.768Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T09:55:01.768Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.normandy.json", + "expires": "2021-07-27T09:55:01.768Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2021-07-27T09:55:01.768Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T09:55:01.768Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2021-07-27T09:55:01.768Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T09:55:01.768Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T09:55:01.768Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T09:55:01.768Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/SaB5uv_dTEWIPo575_w3PA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/SaB5uv_dTEWIPo575_w3PA/artifacts/public/build/target.json new file mode 100644 index 00000000..051778f6 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/SaB5uv_dTEWIPo575_w3PA/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "buildid": "20200727095125", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-x86_64", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "798bdad605b985a71cd204a56bb816dea503d432", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/SaB5uv_dTEWIPo575_w3PA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/SaB5uv_dTEWIPo575_w3PA/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..d3c93a6a --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/SaB5uv_dTEWIPo575_w3PA/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "linux", + "pgo": false, + "platform_guess": "linux64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Sc8S7mSGQkmCjzn0ZJb0_A/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/Sc8S7mSGQkmCjzn0ZJb0_A/artifacts/.get deleted file mode 100644 index fc1e1361..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Sc8S7mSGQkmCjzn0ZJb0_A/artifacts/.get +++ /dev/null @@ -1,316 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/geckoview-androidTest.apk", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/geckoview_example.apk", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113095525/geckoview-default-armeabi-v7a-72.0.20191113095525-javadoc.jar", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113095525/geckoview-default-armeabi-v7a-72.0.20191113095525-javadoc.jar.md5", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113095525/geckoview-default-armeabi-v7a-72.0.20191113095525-javadoc.jar.sha1", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113095525/geckoview-default-armeabi-v7a-72.0.20191113095525-sources.jar", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113095525/geckoview-default-armeabi-v7a-72.0.20191113095525-sources.jar.md5", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113095525/geckoview-default-armeabi-v7a-72.0.20191113095525-sources.jar.sha1", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113095525/geckoview-default-armeabi-v7a-72.0.20191113095525.aar", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113095525/geckoview-default-armeabi-v7a-72.0.20191113095525.aar.md5", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113095525/geckoview-default-armeabi-v7a-72.0.20191113095525.aar.sha1", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113095525/geckoview-default-armeabi-v7a-72.0.20191113095525.pom", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113095525/geckoview-default-armeabi-v7a-72.0.20191113095525.pom.md5", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113095525/geckoview-default-armeabi-v7a-72.0.20191113095525.pom.sha1", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/xml" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml.md5", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml.sha1", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T09:57:06.779Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Sc8S7mSGQkmCjzn0ZJb0_A/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/Sc8S7mSGQkmCjzn0ZJb0_A/artifacts/public/build/target.json deleted file mode 100644 index a34f6e00..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Sc8S7mSGQkmCjzn0ZJb0_A/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=arm-linux-androideabi", - "buildid": "20191113095525", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=arm-linux-androideabi", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ --target=arm-linux-androideabi", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "fennec", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "android-arm", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "2f19e7b646e0a52fa855b75c868f0a3f3a990ad3", - "moz_update_channel": "default", - "target_alias": "arm-unknown-linux-androideabi", - "target_cpu": "arm", - "target_os": "linux-androideabi", - "target_vendor": "unknown" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/Sc8S7mSGQkmCjzn0ZJb0_A/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/Sc8S7mSGQkmCjzn0ZJb0_A/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 7cf3aa44..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Sc8S7mSGQkmCjzn0ZJb0_A/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "allow_legacy_extensions": true, - "android_min_sdk": "16", - "appname": "fennec", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 32, - "buildapp": "mobile/android", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": false, - "official": true, - "os": "android", - "pgo": false, - "platform_guess": "android-arm", - "processor": "arm", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": false, - "telemetry": false, - "tests_enabled": true, - "toolkit": "android", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/TLQ0gDvfSHK_ind41MLYyg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/TLQ0gDvfSHK_ind41MLYyg/artifacts/.get new file mode 100644 index 00000000..d5492a94 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/TLQ0gDvfSHK_ind41MLYyg/artifacts/.get @@ -0,0 +1,256 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/install/sea/target.installer.exe", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/setup.exe", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.zip", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T03:36:23.730Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/TLQ0gDvfSHK_ind41MLYyg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/TLQ0gDvfSHK_ind41MLYyg/artifacts/public/build/target.json new file mode 100644 index 00000000..dd2903a0 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/TLQ0gDvfSHK_ind41MLYyg/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/checkouts/gecko/vs2017_15.9.6/VC/bin/Hostx64/arm64/armasm64.exe", + "buildid": "20200727033000", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang-cl -Xclang -std=gnu99 --target=aarch64-windows-msvc", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang-cl -Xclang -std=c++17 --target=aarch64-windows-msvc", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "win64-aarch64", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "56082fc4acfacba40993e47ef8302993c59e264e", + "moz_update_channel": "default", + "target_alias": "aarch64-windows-mingw32", + "target_cpu": "aarch64", + "target_os": "mingw32", + "target_vendor": "windows" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/TLQ0gDvfSHK_ind41MLYyg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/TLQ0gDvfSHK_ind41MLYyg/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..1c5c0593 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/TLQ0gDvfSHK_ind41MLYyg/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": ".exe", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang-cl", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "win", + "pgo": false, + "platform_guess": "win64", + "processor": "aarch64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "windows", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/T_IIHhb-Q2KVGfS8Q7yd-A/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/T_IIHhb-Q2KVGfS8Q7yd-A/artifacts/.get deleted file mode 100644 index 9d44cbbd..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/T_IIHhb-Q2KVGfS8Q7yd-A/artifacts/.get +++ /dev/null @@ -1,226 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T15:11:36.368Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T15:11:36.368Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T15:11:36.368Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T15:11:36.368Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2019-12-11T15:11:36.368Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2019-12-11T15:11:36.368Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T15:11:36.368Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T15:11:36.368Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T15:11:36.368Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T15:11:36.368Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T15:11:36.368Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T15:11:36.368Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T15:11:36.368Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2019-12-11T15:11:36.368Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2019-12-11T15:11:36.368Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T15:11:36.368Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T15:11:36.368Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2019-12-11T15:11:36.368Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T15:11:36.368Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T15:11:36.368Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T15:11:36.368Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T15:11:36.368Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T15:11:36.368Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2019-12-11T15:11:36.368Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T15:11:36.368Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T15:11:36.368Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T15:11:36.368Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T15:11:36.368Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T15:11:36.368Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T15:11:36.368Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2019-12-11T15:11:36.368Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T15:11:36.368Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T15:11:36.368Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T15:11:36.368Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T15:11:36.368Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T15:11:36.368Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T15:11:36.368Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/T_IIHhb-Q2KVGfS8Q7yd-A/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/T_IIHhb-Q2KVGfS8Q7yd-A/artifacts/public/build/target.json deleted file mode 100644 index 401b5657..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/T_IIHhb-Q2KVGfS8Q7yd-A/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "buildid": "20191113150854", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "linux-x86_64-asan", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "cfa38765c407180ae40f1f10005adb73d47e1a18", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/T_IIHhb-Q2KVGfS8Q7yd-A/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/T_IIHhb-Q2KVGfS8Q7yd-A/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 3162c70d..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/T_IIHhb-Q2KVGfS8Q7yd-A/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": true, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": false, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": false, - "os": "linux", - "pgo": false, - "platform_guess": "linux64-asan", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": true, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/TcJgBB75T8CbkhWWD-Uybw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/TcJgBB75T8CbkhWWD-Uybw/artifacts/.get deleted file mode 100644 index 0812cc5e..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/TcJgBB75T8CbkhWWD-Uybw/artifacts/.get +++ /dev/null @@ -1,208 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-11T22:30:46.506Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-11T22:30:46.506Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-11T22:30:46.506Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-11T22:30:46.506Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-11T22:30:46.506Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-11T22:30:46.506Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-11T22:30:46.506Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-11T22:30:46.506Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-11T22:30:46.506Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-11T22:30:46.506Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-11T22:30:46.506Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-11T22:30:46.506Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-11T22:30:46.506Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-11T22:30:46.506Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-11T22:30:46.506Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-11T22:30:46.506Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-11T22:30:46.506Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-11T22:30:46.506Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-11T22:30:46.506Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-11-11T22:30:46.506Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-11T22:30:46.506Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-11T22:30:46.506Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-11T22:30:46.506Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-11T22:30:46.506Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-11T22:30:46.506Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-11T22:30:46.506Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-11T22:30:46.506Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-11-11T22:30:46.506Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-11T22:30:46.506Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-11T22:30:46.506Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-11T22:30:46.506Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-11T22:30:46.506Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-11T22:30:46.506Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-11T22:30:46.506Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/TcJgBB75T8CbkhWWD-Uybw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/TcJgBB75T8CbkhWWD-Uybw/artifacts/public/build/target.json deleted file mode 100644 index 5e0753f4..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/TcJgBB75T8CbkhWWD-Uybw/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/workspace/build/src/clang/bin/clang -std=gnu99", - "buildid": "20191112222920", - "cc": "/builds/worker/workspace/build/src/clang/bin/clang -std=gnu99", - "cxx": "/builds/worker/workspace/build/src/clang/bin/clang++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "68.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "68.2.1", - "moz_pkg_platform": "linux-x86_64-asan", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr68", - "moz_source_stamp": "939a3aec03d304a0a3e3b003e26965c6e95ec211", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/TcJgBB75T8CbkhWWD-Uybw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/TcJgBB75T8CbkhWWD-Uybw/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index b2b0fb26..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/TcJgBB75T8CbkhWWD-Uybw/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": true, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": false, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": false, - "os": "linux", - "pgo": false, - "platform_guess": "linux64-asan", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk3", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": true, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/TebNFfhfQ-OJNQWF-uu2zQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/TebNFfhfQ-OJNQWF-uu2zQ/artifacts/.get new file mode 100644 index 00000000..5b39efef --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/TebNFfhfQ-OJNQWF-uu2zQ/artifacts/.get @@ -0,0 +1,262 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "text/html; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar.exe", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "application/x-msdownload" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff.exe", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "application/x-msdownload" + }, + { + "storageType": "s3", + "name": "public/build/install/sea/target.installer.exe", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "application/x-msdownload" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "application/x-zip-compressed" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/setup.exe", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "application/x-msdownload" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "application/x-gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "application/x-gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "application/x-gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "application/x-gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "application/x-gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "application/x-gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "application/x-gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "application/x-gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "application/x-zip-compressed" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "application/x-gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.normandy.json", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "application/x-gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "application/x-gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "application/x-gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "application/x-gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "application/x-gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "application/x-gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "application/x-gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.zip", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "application/x-zip-compressed" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T09:55:01.561Z", + "contentType": "application/octet-stream" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/TebNFfhfQ-OJNQWF-uu2zQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/TebNFfhfQ-OJNQWF-uu2zQ/artifacts/public/build/target.json new file mode 100644 index 00000000..4468e52f --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/TebNFfhfQ-OJNQWF-uu2zQ/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "z:/build/build/src/vs2017_15.8.4/VC/bin/HostX64/x64/ml64.exe", + "buildid": "20200727095125", + "cc": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe -Xclang -std=gnu99", + "cxx": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe -Xclang -std=c++17", + "host_alias": "x86_64-pc-mingw32", + "host_cpu": "x86_64", + "host_os": "mingw32", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "win64-asan", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "798bdad605b985a71cd204a56bb816dea503d432", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-mingw32", + "target_cpu": "x86_64", + "target_os": "mingw32", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/TebNFfhfQ-OJNQWF-uu2zQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/TebNFfhfQ-OJNQWF-uu2zQ/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..1cfb0fcc --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/TebNFfhfQ-OJNQWF-uu2zQ/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": true, + "bin_suffix": ".exe", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang-cl", + "ccov": false, + "crashreporter": false, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "z:/build/build/src/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": false, + "os": "win", + "pgo": false, + "platform_guess": "win64-asan", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "windows", + "topsrcdir": "z:/build/build/src", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/TkvRmZfjQum731yaCCSHYA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/TkvRmZfjQum731yaCCSHYA/artifacts/.get deleted file mode 100644 index e9cc6b78..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/TkvRmZfjQum731yaCCSHYA/artifacts/.get +++ /dev/null @@ -1,238 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.dmg", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T00:03:46.872Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/TkvRmZfjQum731yaCCSHYA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/TkvRmZfjQum731yaCCSHYA/artifacts/public/build/target.json deleted file mode 100644 index a7bf1e5e..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/TkvRmZfjQum731yaCCSHYA/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", - "buildid": "20191113000048", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk --target=x86_64-apple-darwin", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "mac", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "77b18bc38fcfb26cbd1df38bc67ec840399a87e0", - "moz_update_channel": "default", - "target_alias": "x86_64-apple-darwin", - "target_cpu": "x86_64", - "target_os": "darwin", - "target_vendor": "apple" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/TkvRmZfjQum731yaCCSHYA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/TkvRmZfjQum731yaCCSHYA/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index dfec7aed..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/TkvRmZfjQum731yaCCSHYA/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "mac", - "pgo": false, - "platform_guess": "macosx64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "cocoa", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/TvQ7G1n0S8qR82PlycxD_A/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/TvQ7G1n0S8qR82PlycxD_A/artifacts/.get deleted file mode 100644 index 433df322..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/TvQ7G1n0S8qR82PlycxD_A/artifacts/.get +++ /dev/null @@ -1,316 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/geckoview-androidTest.apk", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/geckoview_example.apk", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113095525/geckoview-default-arm64-v8a-72.0.20191113095525-javadoc.jar", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113095525/geckoview-default-arm64-v8a-72.0.20191113095525-javadoc.jar.md5", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113095525/geckoview-default-arm64-v8a-72.0.20191113095525-javadoc.jar.sha1", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113095525/geckoview-default-arm64-v8a-72.0.20191113095525-sources.jar", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113095525/geckoview-default-arm64-v8a-72.0.20191113095525-sources.jar.md5", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113095525/geckoview-default-arm64-v8a-72.0.20191113095525-sources.jar.sha1", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113095525/geckoview-default-arm64-v8a-72.0.20191113095525.aar", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113095525/geckoview-default-arm64-v8a-72.0.20191113095525.aar.md5", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113095525/geckoview-default-arm64-v8a-72.0.20191113095525.aar.sha1", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113095525/geckoview-default-arm64-v8a-72.0.20191113095525.pom", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113095525/geckoview-default-arm64-v8a-72.0.20191113095525.pom.md5", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113095525/geckoview-default-arm64-v8a-72.0.20191113095525.pom.sha1", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/maven-metadata.xml", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/xml" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/maven-metadata.xml.md5", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/maven-metadata.xml.sha1", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T09:57:05.307Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/TvQ7G1n0S8qR82PlycxD_A/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/TvQ7G1n0S8qR82PlycxD_A/artifacts/public/build/target.json deleted file mode 100644 index 57135ec1..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/TvQ7G1n0S8qR82PlycxD_A/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=aarch64-linux-android", - "buildid": "20191113095525", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=aarch64-linux-android", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ --target=aarch64-linux-android", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "fennec", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "android-aarch64", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "2f19e7b646e0a52fa855b75c868f0a3f3a990ad3", - "moz_update_channel": "default", - "target_alias": "aarch64-unknown-linux-android", - "target_cpu": "aarch64", - "target_os": "linux-android", - "target_vendor": "unknown" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/TvQ7G1n0S8qR82PlycxD_A/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/TvQ7G1n0S8qR82PlycxD_A/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index f5f7f9e8..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/TvQ7G1n0S8qR82PlycxD_A/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "allow_legacy_extensions": true, - "android_min_sdk": "21", - "appname": "fennec", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "mobile/android", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": false, - "official": true, - "os": "android", - "pgo": false, - "platform_guess": "android-arm", - "processor": "aarch64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": false, - "telemetry": false, - "tests_enabled": true, - "toolkit": "android", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/U2B2NjK-SNWjIx0_3LBq5Q/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/U2B2NjK-SNWjIx0_3LBq5Q/artifacts/.get deleted file mode 100644 index f628d22b..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/U2B2NjK-SNWjIx0_3LBq5Q/artifacts/.get +++ /dev/null @@ -1,316 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/geckoview-androidTest.apk", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/geckoview_example.apk", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113142416/geckoview-default-arm64-v8a-72.0.20191113142416-javadoc.jar", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113142416/geckoview-default-arm64-v8a-72.0.20191113142416-javadoc.jar.md5", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113142416/geckoview-default-arm64-v8a-72.0.20191113142416-javadoc.jar.sha1", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113142416/geckoview-default-arm64-v8a-72.0.20191113142416-sources.jar", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113142416/geckoview-default-arm64-v8a-72.0.20191113142416-sources.jar.md5", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113142416/geckoview-default-arm64-v8a-72.0.20191113142416-sources.jar.sha1", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113142416/geckoview-default-arm64-v8a-72.0.20191113142416.aar", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113142416/geckoview-default-arm64-v8a-72.0.20191113142416.aar.md5", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113142416/geckoview-default-arm64-v8a-72.0.20191113142416.aar.sha1", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113142416/geckoview-default-arm64-v8a-72.0.20191113142416.pom", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113142416/geckoview-default-arm64-v8a-72.0.20191113142416.pom.md5", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113142416/geckoview-default-arm64-v8a-72.0.20191113142416.pom.sha1", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/maven-metadata.xml", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/xml" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/maven-metadata.xml.md5", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/maven-metadata.xml.sha1", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T14:26:39.345Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/U2B2NjK-SNWjIx0_3LBq5Q/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/U2B2NjK-SNWjIx0_3LBq5Q/artifacts/public/build/target.json deleted file mode 100644 index 7997b768..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/U2B2NjK-SNWjIx0_3LBq5Q/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=aarch64-linux-android", - "buildid": "20191113142416", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=aarch64-linux-android", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ --target=aarch64-linux-android", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "fennec", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "android-aarch64", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "a9395b9ab89526cb934f0d4aa1dc03670c3757c0", - "moz_update_channel": "default", - "target_alias": "aarch64-unknown-linux-android", - "target_cpu": "aarch64", - "target_os": "linux-android", - "target_vendor": "unknown" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/U2B2NjK-SNWjIx0_3LBq5Q/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/U2B2NjK-SNWjIx0_3LBq5Q/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index f5f7f9e8..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/U2B2NjK-SNWjIx0_3LBq5Q/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "allow_legacy_extensions": true, - "android_min_sdk": "21", - "appname": "fennec", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "mobile/android", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": false, - "official": true, - "os": "android", - "pgo": false, - "platform_guess": "android-arm", - "processor": "aarch64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": false, - "telemetry": false, - "tests_enabled": true, - "toolkit": "android", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/UH-FM-VNTN65CijsVXymGQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/UH-FM-VNTN65CijsVXymGQ/artifacts/.get deleted file mode 100644 index e33b45de..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/UH-FM-VNTN65CijsVXymGQ/artifacts/.get +++ /dev/null @@ -1,250 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "text/html; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar.exe", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff.exe", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/install/sea/target.installer.exe", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/setup.exe", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.zip", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-12-02T18:08:57.084Z", - "contentType": "application/octet-stream" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/UH-FM-VNTN65CijsVXymGQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/UH-FM-VNTN65CijsVXymGQ/artifacts/public/build/target.json deleted file mode 100644 index f2d7c6ae..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/UH-FM-VNTN65CijsVXymGQ/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "z:/build/build/src/vs2017_15.8.4/VC/bin/HostX64/x64/ml64.exe", - "buildid": "20191203180713", - "cc": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe -Xclang -std=gnu99", - "cxx": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe", - "host_alias": "x86_64-pc-mingw32", - "host_cpu": "x86_64", - "host_os": "mingw32", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "73.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "73.0a1", - "moz_pkg_platform": "win64", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "d1001fea6e4c66b98bb4983df49c6e47d2db5ceb", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-mingw32", - "target_cpu": "x86_64", - "target_os": "mingw32", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/UH-FM-VNTN65CijsVXymGQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/UH-FM-VNTN65CijsVXymGQ/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 8107a3fd..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/UH-FM-VNTN65CijsVXymGQ/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": ".exe", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang-cl", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "early_beta_or_earlier": true, - "healthreport": true, - "mozconfig": "z:/build/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "win", - "pgo": false, - "platform_guess": "win64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "windows", - "topsrcdir": "z:/build/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Uh-AuQeuSoy6TAGlis1AMg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/Uh-AuQeuSoy6TAGlis1AMg/artifacts/.get new file mode 100644 index 00000000..028947ae --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/Uh-AuQeuSoy6TAGlis1AMg/artifacts/.get @@ -0,0 +1,334 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/geckoview-androidTest.apk", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/geckoview_example.apk", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727033000/geckoview-default-x86_64-80.0.20200727033000.aar", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727033000/geckoview-default-x86_64-80.0.20200727033000.aar.md5", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727033000/geckoview-default-x86_64-80.0.20200727033000.aar.sha1", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727033000/geckoview-default-x86_64-80.0.20200727033000-javadoc.jar", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727033000/geckoview-default-x86_64-80.0.20200727033000-javadoc.jar.md5", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727033000/geckoview-default-x86_64-80.0.20200727033000-javadoc.jar.sha1", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727033000/geckoview-default-x86_64-80.0.20200727033000.pom", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727033000/geckoview-default-x86_64-80.0.20200727033000.pom.md5", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727033000/geckoview-default-x86_64-80.0.20200727033000.pom.sha1", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727033000/geckoview-default-x86_64-80.0.20200727033000-sources.jar", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727033000/geckoview-default-x86_64-80.0.20200727033000-sources.jar.md5", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727033000/geckoview-default-x86_64-80.0.20200727033000-sources.jar.sha1", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/maven-metadata.xml", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/xml" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/maven-metadata.xml.md5", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/maven-metadata.xml.sha1", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T03:36:23.314Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Uh-AuQeuSoy6TAGlis1AMg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/Uh-AuQeuSoy6TAGlis1AMg/artifacts/public/build/target.json new file mode 100644 index 00000000..63f015d7 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/Uh-AuQeuSoy6TAGlis1AMg/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=x86_64-linux-android", + "buildid": "20200727033000", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=x86_64-linux-android", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17 --target=x86_64-linux-android", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "fennec", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "android-x86_64", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "56082fc4acfacba40993e47ef8302993c59e264e", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-android", + "target_cpu": "x86_64", + "target_os": "linux-android", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/Uh-AuQeuSoy6TAGlis1AMg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/Uh-AuQeuSoy6TAGlis1AMg/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..a9f35ccd --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/Uh-AuQeuSoy6TAGlis1AMg/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,37 @@ +{ + "android_min_sdk": "21", + "appname": "fennec", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "mobile/android", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": false, + "official": true, + "os": "android", + "pgo": false, + "platform_guess": "android-x86_64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": false, + "telemetry": false, + "tests_enabled": true, + "toolkit": "android", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": false +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/UmQjjcmYRV6xlvDcBmqmxQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/UmQjjcmYRV6xlvDcBmqmxQ/artifacts/.get new file mode 100644 index 00000000..8c261c6e --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/UmQjjcmYRV6xlvDcBmqmxQ/artifacts/.get @@ -0,0 +1,262 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.normandy.json", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T09:55:01.508Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/UmQjjcmYRV6xlvDcBmqmxQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/UmQjjcmYRV6xlvDcBmqmxQ/artifacts/public/build/target.json new file mode 100644 index 00000000..051778f6 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/UmQjjcmYRV6xlvDcBmqmxQ/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "buildid": "20200727095125", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-x86_64", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "798bdad605b985a71cd204a56bb816dea503d432", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/UmQjjcmYRV6xlvDcBmqmxQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/UmQjjcmYRV6xlvDcBmqmxQ/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..1d743acb --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/UmQjjcmYRV6xlvDcBmqmxQ/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "debug", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": true, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "linux", + "pgo": false, + "platform_guess": "linux64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/UriyFxHxRTmXnAyRpug4ig/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/UriyFxHxRTmXnAyRpug4ig/artifacts/.get new file mode 100644 index 00000000..bf24c42c --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/UriyFxHxRTmXnAyRpug4ig/artifacts/.get @@ -0,0 +1,250 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.normandy.json", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T09:55:01.575Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/UriyFxHxRTmXnAyRpug4ig/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/UriyFxHxRTmXnAyRpug4ig/artifacts/public/build/target.json new file mode 100644 index 00000000..d3ae94fe --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/UriyFxHxRTmXnAyRpug4ig/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "buildid": "20200727095125", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-x86_64-tsan", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "798bdad605b985a71cd204a56bb816dea503d432", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/UriyFxHxRTmXnAyRpug4ig/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/UriyFxHxRTmXnAyRpug4ig/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..ea907cb4 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/UriyFxHxRTmXnAyRpug4ig/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": false, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": false, + "os": "linux", + "pgo": false, + "platform_guess": "linux64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": true, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/V0ORIJr5QKqF7pEaJXW8Fg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/V0ORIJr5QKqF7pEaJXW8Fg/artifacts/.get deleted file mode 100644 index 7f6e59cc..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/V0ORIJr5QKqF7pEaJXW8Fg/artifacts/.get +++ /dev/null @@ -1,238 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.dmg", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T04:51:50.376Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/V0ORIJr5QKqF7pEaJXW8Fg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/V0ORIJr5QKqF7pEaJXW8Fg/artifacts/public/build/target.json deleted file mode 100644 index 615b477a..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/V0ORIJr5QKqF7pEaJXW8Fg/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", - "buildid": "20191113044959", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk --target=x86_64-apple-darwin", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "mac", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "48a708577712a2eb1b19aafcda25b2aa0e607629", - "moz_update_channel": "default", - "target_alias": "x86_64-apple-darwin", - "target_cpu": "x86_64", - "target_os": "darwin", - "target_vendor": "apple" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/V0ORIJr5QKqF7pEaJXW8Fg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/V0ORIJr5QKqF7pEaJXW8Fg/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index dfec7aed..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/V0ORIJr5QKqF7pEaJXW8Fg/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "mac", - "pgo": false, - "platform_guess": "macosx64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "cocoa", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/V5umJtBAQVSxB3DvRaiodw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/V5umJtBAQVSxB3DvRaiodw/artifacts/.get deleted file mode 100644 index 2f4d46a1..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/V5umJtBAQVSxB3DvRaiodw/artifacts/.get +++ /dev/null @@ -1,238 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T09:57:04.947Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/V5umJtBAQVSxB3DvRaiodw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/V5umJtBAQVSxB3DvRaiodw/artifacts/public/build/target.json deleted file mode 100644 index 9aca4a75..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/V5umJtBAQVSxB3DvRaiodw/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 -m32", - "buildid": "20191113095525", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 -m32", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -m32", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "linux-i686", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "2f19e7b646e0a52fa855b75c868f0a3f3a990ad3", - "moz_update_channel": "default", - "target_alias": "i686-pc-linux-gnu", - "target_cpu": "i686", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/V5umJtBAQVSxB3DvRaiodw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/V5umJtBAQVSxB3DvRaiodw/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 469b36d8..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/V5umJtBAQVSxB3DvRaiodw/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 32, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "linux", - "pgo": false, - "platform_guess": "linux", - "processor": "x86", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/V6uEUuDqTG236vezwS55nQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/V6uEUuDqTG236vezwS55nQ/artifacts/.get deleted file mode 100644 index ad06fbce..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/V6uEUuDqTG236vezwS55nQ/artifacts/.get +++ /dev/null @@ -1,316 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/geckoview-androidTest.apk", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/geckoview_example.apk", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113095525/geckoview-default-x86-72.0.20191113095525-javadoc.jar", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113095525/geckoview-default-x86-72.0.20191113095525-javadoc.jar.md5", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113095525/geckoview-default-x86-72.0.20191113095525-javadoc.jar.sha1", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113095525/geckoview-default-x86-72.0.20191113095525-sources.jar", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113095525/geckoview-default-x86-72.0.20191113095525-sources.jar.md5", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113095525/geckoview-default-x86-72.0.20191113095525-sources.jar.sha1", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113095525/geckoview-default-x86-72.0.20191113095525.aar", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113095525/geckoview-default-x86-72.0.20191113095525.aar.md5", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113095525/geckoview-default-x86-72.0.20191113095525.aar.sha1", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113095525/geckoview-default-x86-72.0.20191113095525.pom", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113095525/geckoview-default-x86-72.0.20191113095525.pom.md5", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113095525/geckoview-default-x86-72.0.20191113095525.pom.sha1", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/xml" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml.md5", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml.sha1", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T09:57:03.762Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/V6uEUuDqTG236vezwS55nQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/V6uEUuDqTG236vezwS55nQ/artifacts/public/build/target.json deleted file mode 100644 index 4475deb3..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/V6uEUuDqTG236vezwS55nQ/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=i686-linux-android", - "buildid": "20191113095525", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=i686-linux-android", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ --target=i686-linux-android", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "fennec", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "android-i686", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "2f19e7b646e0a52fa855b75c868f0a3f3a990ad3", - "moz_update_channel": "default", - "target_alias": "i686-pc-linux-android", - "target_cpu": "i686", - "target_os": "linux-android", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/V6uEUuDqTG236vezwS55nQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/V6uEUuDqTG236vezwS55nQ/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index cb8f2cdc..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/V6uEUuDqTG236vezwS55nQ/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "allow_legacy_extensions": true, - "android_min_sdk": "16", - "appname": "fennec", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 32, - "buildapp": "mobile/android", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": false, - "official": true, - "os": "android", - "pgo": false, - "platform_guess": "android-x86", - "processor": "x86", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": false, - "telemetry": false, - "tests_enabled": true, - "toolkit": "android", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/VfBapUHaSmS2Q2QXKuhnKA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/VfBapUHaSmS2Q2QXKuhnKA/artifacts/.get new file mode 100644 index 00000000..1544f680 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/VfBapUHaSmS2Q2QXKuhnKA/artifacts/.get @@ -0,0 +1,166 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T08:59:09.570Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T08:59:09.570Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T08:59:09.570Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T08:59:09.570Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2020-08-24T08:59:09.570Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2020-08-24T08:59:09.570Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T08:59:09.570Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T08:59:09.570Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T08:59:09.570Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.codesign-entitlements.zip", + "expires": "2020-08-24T08:59:09.570Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2020-08-24T08:59:09.570Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2020-08-24T08:59:09.570Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.dmg", + "expires": "2020-08-24T08:59:09.570Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-24T08:59:09.570Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T08:59:09.570Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T08:59:09.570Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T08:59:09.570Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2020-08-24T08:59:09.570Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T08:59:09.570Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T08:59:09.570Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2020-08-24T08:59:09.570Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T08:59:09.570Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T08:59:09.570Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T08:59:09.570Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T08:59:09.570Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T08:59:09.570Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T08:59:09.570Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/VfBapUHaSmS2Q2QXKuhnKA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/VfBapUHaSmS2Q2QXKuhnKA/artifacts/public/build/target.json new file mode 100644 index 00000000..bdd9becd --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/VfBapUHaSmS2Q2QXKuhnKA/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/checkouts/gecko/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", + "buildid": "20200727085208", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/checkouts/gecko/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -isysroot /builds/worker/checkouts/gecko/MacOSX10.11.sdk -std=gnu++17 --target=x86_64-apple-darwin", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "mac", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "6e604e8ff32ade90bdee21b40366c365039ec7f2", + "moz_update_channel": "default", + "target_alias": "x86_64-apple-darwin", + "target_cpu": "x86_64", + "target_os": "darwin", + "target_vendor": "apple" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/VfBapUHaSmS2Q2QXKuhnKA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/VfBapUHaSmS2Q2QXKuhnKA/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..2934edae --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/VfBapUHaSmS2Q2QXKuhnKA/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "mac", + "pgo": false, + "platform_guess": "macosx64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "cocoa", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/ViKm6PJ5QYyVJy0XZpwK0Q/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/ViKm6PJ5QYyVJy0XZpwK0Q/artifacts/.get deleted file mode 100644 index 61f9c25e..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/ViKm6PJ5QYyVJy0XZpwK0Q/artifacts/.get +++ /dev/null @@ -1,232 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.zip", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.zip", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.zip", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.dmg", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.zip", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.zip", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.zip", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.stylo-bindings.zip", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.zip", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.zip", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/logs/log_critical.log", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_debug.log", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_error.log", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_fatal.log", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_info.log", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_raw.log", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_warning.log", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "text/plain" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/ViKm6PJ5QYyVJy0XZpwK0Q/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/ViKm6PJ5QYyVJy0XZpwK0Q/artifacts/public/build/target.json deleted file mode 100644 index fa959353..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/ViKm6PJ5QYyVJy0XZpwK0Q/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "$(CC)", - "buildid": "20191014131614", - "cc": "/builds/worker/workspace/build/src/clang/bin/clang -target x86_64-apple-darwin11 -B /builds/worker/workspace/build/src/cctools/bin -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99", - "cxx": "/builds/worker/workspace/build/src/clang/bin/clang++ -target x86_64-apple-darwin11 -B /builds/worker/workspace/build/src/cctools/bin -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu++14", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "60.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "60.9.1", - "moz_pkg_platform": "mac-asan", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr60", - "moz_source_stamp": "e67641c2e4ccd1fe2d4cd522b6575adec838697a", - "moz_update_channel": "default", - "target_alias": "x86_64-apple-darwin", - "target_cpu": "x86_64", - "target_os": "darwin", - "target_vendor": "apple" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/ViKm6PJ5QYyVJy0XZpwK0Q/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/ViKm6PJ5QYyVJy0XZpwK0Q/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 159dc7fe..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/ViKm6PJ5QYyVJy0XZpwK0Q/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "addon_signing": true, - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": true, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "ccov": false, - "crashreporter": false, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": false, - "os": "mac", - "pgo": false, - "platform_guess": "macosx64-asan", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "cocoa", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/WAymaioOQ1qVGZ_r4D51zQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/WAymaioOQ1qVGZ_r4D51zQ/artifacts/.get deleted file mode 100644 index c6425572..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/WAymaioOQ1qVGZ_r4D51zQ/artifacts/.get +++ /dev/null @@ -1,250 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "text/html; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar.exe", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff.exe", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/install/sea/target.installer.exe", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/setup.exe", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.zip", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T09:57:05.279Z", - "contentType": "application/octet-stream" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/WAymaioOQ1qVGZ_r4D51zQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/WAymaioOQ1qVGZ_r4D51zQ/artifacts/public/build/target.json deleted file mode 100644 index ec89318b..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/WAymaioOQ1qVGZ_r4D51zQ/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "z:/build/build/src/vs2017_15.8.4/VC/bin/HostX64/x64/ml64.exe", - "buildid": "20191113095525", - "cc": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe -Xclang -std=gnu99", - "cxx": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe", - "host_alias": "x86_64-pc-mingw32", - "host_cpu": "x86_64", - "host_os": "mingw32", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "win64", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "2f19e7b646e0a52fa855b75c868f0a3f3a990ad3", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-mingw32", - "target_cpu": "x86_64", - "target_os": "mingw32", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/WAymaioOQ1qVGZ_r4D51zQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/WAymaioOQ1qVGZ_r4D51zQ/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index c2b213bf..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/WAymaioOQ1qVGZ_r4D51zQ/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": ".exe", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang-cl", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "z:/build/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "win", - "pgo": false, - "platform_guess": "win64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "windows", - "topsrcdir": "z:/build/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/WMHJbRaXSi6WXnuVk4fTRA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/WMHJbRaXSi6WXnuVk4fTRA/artifacts/.get deleted file mode 100644 index 6fe101c4..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/WMHJbRaXSi6WXnuVk4fTRA/artifacts/.get +++ /dev/null @@ -1,250 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.zip", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.zip", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.zip", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.zip", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.zip", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.zip", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.stylo-bindings.zip", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.zip", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.zip", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/logs/log_critical.log", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_debug.log", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_error.log", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_fatal.log", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_info.log", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_raw.log", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_warning.log", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "text/plain" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/WMHJbRaXSi6WXnuVk4fTRA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/WMHJbRaXSi6WXnuVk4fTRA/artifacts/public/build/target.json deleted file mode 100644 index 3ea93bf0..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/WMHJbRaXSi6WXnuVk4fTRA/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "$(CC)", - "buildid": "20191014131614", - "cc": "/builds/worker/workspace/build/src/gcc/bin/gcc -m32 -march=pentium-m -std=gnu99", - "cxx": "/builds/worker/workspace/build/src/gcc/bin/g++ -m32 -march=pentium-m", - "host_alias": "i686-pc-linux-gnu", - "host_cpu": "i686", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "60.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "60.9.1", - "moz_pkg_platform": "linux-i686", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr60", - "moz_source_stamp": "e67641c2e4ccd1fe2d4cd522b6575adec838697a", - "moz_update_channel": "default", - "target_alias": "i686-pc-linux-gnu", - "target_cpu": "i686", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/WMHJbRaXSi6WXnuVk4fTRA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/WMHJbRaXSi6WXnuVk4fTRA/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 8240f451..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/WMHJbRaXSi6WXnuVk4fTRA/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "addon_signing": true, - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 32, - "buildapp": "browser", - "buildtype_guess": "debug", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": true, - "os": "linux", - "pgo": false, - "platform_guess": "linux", - "processor": "x86", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk3", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/WQNdHHSKR-av8RVS4CIcGw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/WQNdHHSKR-av8RVS4CIcGw/artifacts/.get deleted file mode 100644 index a7289bf9..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/WQNdHHSKR-av8RVS4CIcGw/artifacts/.get +++ /dev/null @@ -1,238 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "text/html; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar.exe", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff.exe", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/install/sea/target.installer.exe", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/setup.exe", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.zip", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T04:51:48.693Z", - "contentType": "application/octet-stream" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/WQNdHHSKR-av8RVS4CIcGw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/WQNdHHSKR-av8RVS4CIcGw/artifacts/public/build/target.json deleted file mode 100644 index c8f1644e..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/WQNdHHSKR-av8RVS4CIcGw/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "z:/build/build/src/vs2017_15.8.4/VC/bin/HostX64/x64/ml64.exe", - "buildid": "20191113044959", - "cc": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe -Xclang -std=gnu99", - "cxx": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe", - "host_alias": "x86_64-pc-mingw32", - "host_cpu": "x86_64", - "host_os": "mingw32", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "win64-asan", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "48a708577712a2eb1b19aafcda25b2aa0e607629", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-mingw32", - "target_cpu": "x86_64", - "target_os": "mingw32", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/WQNdHHSKR-av8RVS4CIcGw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/WQNdHHSKR-av8RVS4CIcGw/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index c581adbe..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/WQNdHHSKR-av8RVS4CIcGw/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": true, - "bin_suffix": ".exe", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang-cl", - "ccov": false, - "crashreporter": false, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "z:/build/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": false, - "os": "win", - "pgo": false, - "platform_guess": "win64-asan", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "windows", - "topsrcdir": "z:/build/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/WSKwsLgmQXCXWCd1UdWz7Q/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/WSKwsLgmQXCXWCd1UdWz7Q/artifacts/.get deleted file mode 100644 index 401b6e0b..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/WSKwsLgmQXCXWCd1UdWz7Q/artifacts/.get +++ /dev/null @@ -1,238 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.zip", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.zip", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.zip", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.zip", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.zip", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.zip", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.stylo-bindings.zip", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.zip", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.zip", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/logs/log_critical.log", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_debug.log", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_error.log", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_fatal.log", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_info.log", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_raw.log", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_warning.log", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "text/plain" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/WSKwsLgmQXCXWCd1UdWz7Q/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/WSKwsLgmQXCXWCd1UdWz7Q/artifacts/public/build/target.json deleted file mode 100644 index a85f3f93..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/WSKwsLgmQXCXWCd1UdWz7Q/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "$(CC)", - "buildid": "20191014131614", - "cc": "/builds/worker/workspace/build/src/clang/bin/clang -fgnu89-inline -B /builds/worker/workspace/build/src/gcc/bin -std=gnu99", - "cxx": "/builds/worker/workspace/build/src/clang/bin/clang++ -B /builds/worker/workspace/build/src/gcc/bin -std=gnu++14", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "60.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "60.9.1", - "moz_pkg_platform": "linux-x86_64-asan", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr60", - "moz_source_stamp": "e67641c2e4ccd1fe2d4cd522b6575adec838697a", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/WSKwsLgmQXCXWCd1UdWz7Q/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/WSKwsLgmQXCXWCd1UdWz7Q/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 5db025c7..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/WSKwsLgmQXCXWCd1UdWz7Q/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "addon_signing": true, - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": true, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "ccov": false, - "crashreporter": false, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": false, - "os": "linux", - "pgo": false, - "platform_guess": "linux64-asan", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk3", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Wf466fw6RUO4xNpRsUhprQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/Wf466fw6RUO4xNpRsUhprQ/artifacts/.get deleted file mode 100644 index fbed8f32..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Wf466fw6RUO4xNpRsUhprQ/artifacts/.get +++ /dev/null @@ -1,202 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-11T03:09:35.415Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-11T03:09:35.415Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-11T03:09:35.415Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-11T03:09:35.415Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-11T03:09:35.415Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-11T03:09:35.415Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-11T03:09:35.415Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-11T03:09:35.415Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.415Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.dmg", - "expires": "2020-11-11T03:09:35.415Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-11T03:09:35.415Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.415Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-11T03:09:35.415Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-11T03:09:35.415Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-11T03:09:35.415Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.415Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-11T03:09:35.415Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-11T03:09:35.415Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.415Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-11T03:09:35.415Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-11T03:09:35.415Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-11T03:09:35.415Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-11T03:09:35.415Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-11T03:09:35.415Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-11T03:09:35.415Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-11T03:09:35.415Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-11T03:09:35.415Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-11T03:09:35.415Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-11T03:09:35.415Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-11T03:09:35.415Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-11T03:09:35.415Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-11T03:09:35.415Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-11T03:09:35.415Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Wf466fw6RUO4xNpRsUhprQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/Wf466fw6RUO4xNpRsUhprQ/artifacts/public/build/target.json deleted file mode 100644 index 9bb64d3d..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Wf466fw6RUO4xNpRsUhprQ/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/workspace/build/src/clang/bin/clang -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99 --target=x86_64-darwin11", - "buildid": "20191112030804", - "cc": "/builds/worker/workspace/build/src/clang/bin/clang -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99 --target=x86_64-darwin11", - "cxx": "/builds/worker/workspace/build/src/clang/bin/clang++ -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk --target=x86_64-darwin11", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "68.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "68.2.1", - "moz_pkg_platform": "mac-asan", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr68", - "moz_source_stamp": "506341a9f6a39813794bca976bf298963eeebf7e", - "moz_update_channel": "default", - "target_alias": "x86_64-apple-darwin11", - "target_cpu": "x86_64", - "target_os": "darwin11", - "target_vendor": "apple" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/Wf466fw6RUO4xNpRsUhprQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/Wf466fw6RUO4xNpRsUhprQ/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 6c56ce31..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Wf466fw6RUO4xNpRsUhprQ/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": true, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": false, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": false, - "os": "mac", - "pgo": false, - "platform_guess": "macosx64-asan", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "cocoa", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/WgOvkAtqQmKg4HLmRJAEGA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/WgOvkAtqQmKg4HLmRJAEGA/artifacts/.get deleted file mode 100644 index aee814ad..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/WgOvkAtqQmKg4HLmRJAEGA/artifacts/.get +++ /dev/null @@ -1,316 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/geckoview-androidTest.apk", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/geckoview_example.apk", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113044959/geckoview-default-arm64-v8a-72.0.20191113044959-javadoc.jar", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113044959/geckoview-default-arm64-v8a-72.0.20191113044959-javadoc.jar.md5", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113044959/geckoview-default-arm64-v8a-72.0.20191113044959-javadoc.jar.sha1", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113044959/geckoview-default-arm64-v8a-72.0.20191113044959-sources.jar", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113044959/geckoview-default-arm64-v8a-72.0.20191113044959-sources.jar.md5", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113044959/geckoview-default-arm64-v8a-72.0.20191113044959-sources.jar.sha1", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113044959/geckoview-default-arm64-v8a-72.0.20191113044959.aar", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113044959/geckoview-default-arm64-v8a-72.0.20191113044959.aar.md5", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113044959/geckoview-default-arm64-v8a-72.0.20191113044959.aar.sha1", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113044959/geckoview-default-arm64-v8a-72.0.20191113044959.pom", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113044959/geckoview-default-arm64-v8a-72.0.20191113044959.pom.md5", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113044959/geckoview-default-arm64-v8a-72.0.20191113044959.pom.sha1", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/maven-metadata.xml", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/xml" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/maven-metadata.xml.md5", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/maven-metadata.xml.sha1", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T04:51:50.287Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/WgOvkAtqQmKg4HLmRJAEGA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/WgOvkAtqQmKg4HLmRJAEGA/artifacts/public/build/target.json deleted file mode 100644 index 5ee4b4ed..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/WgOvkAtqQmKg4HLmRJAEGA/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=aarch64-linux-android", - "buildid": "20191113044959", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=aarch64-linux-android", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ --target=aarch64-linux-android", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "fennec", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "android-aarch64", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "48a708577712a2eb1b19aafcda25b2aa0e607629", - "moz_update_channel": "default", - "target_alias": "aarch64-unknown-linux-android", - "target_cpu": "aarch64", - "target_os": "linux-android", - "target_vendor": "unknown" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/WgOvkAtqQmKg4HLmRJAEGA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/WgOvkAtqQmKg4HLmRJAEGA/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index f5f7f9e8..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/WgOvkAtqQmKg4HLmRJAEGA/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "allow_legacy_extensions": true, - "android_min_sdk": "21", - "appname": "fennec", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "mobile/android", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": false, - "official": true, - "os": "android", - "pgo": false, - "platform_guess": "android-arm", - "processor": "aarch64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": false, - "telemetry": false, - "tests_enabled": true, - "toolkit": "android", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Wp5v7gouSqSGc0OF3fDbJA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/Wp5v7gouSqSGc0OF3fDbJA/artifacts/.get deleted file mode 100644 index 6aee402f..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Wp5v7gouSqSGc0OF3fDbJA/artifacts/.get +++ /dev/null @@ -1,250 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.zip", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.zip", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.zip", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.zip", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.zip", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.zip", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.stylo-bindings.zip", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.zip", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.zip", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/logs/log_critical.log", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_debug.log", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_error.log", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_fatal.log", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_info.log", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_raw.log", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_warning.log", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "text/plain" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Wp5v7gouSqSGc0OF3fDbJA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/Wp5v7gouSqSGc0OF3fDbJA/artifacts/public/build/target.json deleted file mode 100644 index b50a4a26..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Wp5v7gouSqSGc0OF3fDbJA/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "$(CC)", - "buildid": "20191014131614", - "cc": "/builds/worker/workspace/build/src/gcc/bin/gcc -std=gnu99", - "cxx": "/builds/worker/workspace/build/src/gcc/bin/g++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "60.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "60.9.1", - "moz_pkg_platform": "linux-x86_64", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr60", - "moz_source_stamp": "e67641c2e4ccd1fe2d4cd522b6575adec838697a", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/Wp5v7gouSqSGc0OF3fDbJA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/Wp5v7gouSqSGc0OF3fDbJA/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 817139ca..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Wp5v7gouSqSGc0OF3fDbJA/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "addon_signing": true, - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "pgo", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": true, - "os": "linux", - "pgo": true, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk3", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/WpRCvHWqTT6GFEhNIHQuKw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/WpRCvHWqTT6GFEhNIHQuKw/artifacts/.get new file mode 100644 index 00000000..96a8564d --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/WpRCvHWqTT6GFEhNIHQuKw/artifacts/.get @@ -0,0 +1,172 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T09:55:01.758Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T09:55:01.758Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T09:55:01.758Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/chrome-map.json", + "expires": "2021-07-27T09:55:01.758Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T09:55:01.758Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2021-07-27T09:55:01.758Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2021-07-27T09:55:01.758Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T09:55:01.758Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T09:55:01.758Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T09:55:01.758Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.code-coverage-gcno.zip", + "expires": "2021-07-27T09:55:01.758Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T09:55:01.758Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T09:55:01.758Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T09:55:01.758Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T09:55:01.758Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T09:55:01.758Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T09:55:01.758Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T09:55:01.758Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.normandy.json", + "expires": "2021-07-27T09:55:01.758Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2021-07-27T09:55:01.758Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T09:55:01.758Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2021-07-27T09:55:01.758Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T09:55:01.758Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T09:55:01.758Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T09:55:01.758Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T09:55:01.758Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T09:55:01.758Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T09:55:01.758Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/WpRCvHWqTT6GFEhNIHQuKw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/WpRCvHWqTT6GFEhNIHQuKw/artifacts/public/build/target.json new file mode 100644 index 00000000..c5024fd8 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/WpRCvHWqTT6GFEhNIHQuKw/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/gcc/bin/gcc -std=gnu99", + "buildid": "20200727095125", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/gcc/bin/gcc -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/gcc/bin/g++ -std=gnu++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-x86_64", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "798bdad605b985a71cd204a56bb816dea503d432", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/WpRCvHWqTT6GFEhNIHQuKw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/WpRCvHWqTT6GFEhNIHQuKw/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..5ab7bd5c --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/WpRCvHWqTT6GFEhNIHQuKw/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "gcc", + "ccov": true, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "linux", + "pgo": false, + "platform_guess": "linux64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/WtGjUSJTTlaRiJHzyciP8w/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/WtGjUSJTTlaRiJHzyciP8w/artifacts/.get deleted file mode 100644 index 5123d517..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/WtGjUSJTTlaRiJHzyciP8w/artifacts/.get +++ /dev/null @@ -1,220 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-11T03:09:35.454Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-11T03:09:35.454Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-11T03:09:35.454Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-11T03:09:35.454Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-11T03:09:35.454Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-11T03:09:35.454Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-11T03:09:35.454Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-11T03:09:35.454Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.454Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-11T03:09:35.454Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-11T03:09:35.454Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-11T03:09:35.454Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.454Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-11T03:09:35.454Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-11T03:09:35.454Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-11T03:09:35.454Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.454Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-11T03:09:35.454Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-11T03:09:35.454Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.454Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-11T03:09:35.454Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-11-11T03:09:35.454Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-11T03:09:35.454Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-11T03:09:35.454Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-11T03:09:35.454Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-11T03:09:35.454Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-11T03:09:35.454Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-11T03:09:35.454Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-11T03:09:35.454Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-11-11T03:09:35.454Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-11T03:09:35.454Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-11T03:09:35.454Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-11T03:09:35.454Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-11T03:09:35.454Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-11T03:09:35.454Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-11T03:09:35.454Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/WtGjUSJTTlaRiJHzyciP8w/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/WtGjUSJTTlaRiJHzyciP8w/artifacts/public/build/target.json deleted file mode 100644 index ef096922..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/WtGjUSJTTlaRiJHzyciP8w/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/workspace/build/src/clang/bin/clang -std=gnu99", - "buildid": "20191112030804", - "cc": "/builds/worker/workspace/build/src/clang/bin/clang -std=gnu99", - "cxx": "/builds/worker/workspace/build/src/clang/bin/clang++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "68.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "68.2.1", - "moz_pkg_platform": "linux-x86_64", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr68", - "moz_source_stamp": "506341a9f6a39813794bca976bf298963eeebf7e", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/WtGjUSJTTlaRiJHzyciP8w/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/WtGjUSJTTlaRiJHzyciP8w/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 0e387e58..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/WtGjUSJTTlaRiJHzyciP8w/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": true, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk3", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Wtj1MZvfRReyOR7uG_PMxQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/Wtj1MZvfRReyOR7uG_PMxQ/artifacts/.get deleted file mode 100644 index 92da38cb..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Wtj1MZvfRReyOR7uG_PMxQ/artifacts/.get +++ /dev/null @@ -1,214 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T14:26:39.322Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T14:26:39.322Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T14:26:39.322Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T14:26:39.322Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2019-12-11T14:26:39.322Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2019-12-11T14:26:39.322Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T14:26:39.322Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T14:26:39.322Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T14:26:39.322Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T14:26:39.322Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T14:26:39.322Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T14:26:39.322Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T14:26:39.322Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2019-12-11T14:26:39.322Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2019-12-11T14:26:39.322Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2019-12-11T14:26:39.322Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T14:26:39.322Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T14:26:39.322Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2019-12-11T14:26:39.322Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T14:26:39.322Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T14:26:39.322Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T14:26:39.322Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T14:26:39.322Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T14:26:39.322Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2019-12-11T14:26:39.322Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T14:26:39.322Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T14:26:39.322Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T14:26:39.322Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T14:26:39.322Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T14:26:39.322Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T14:26:39.322Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2019-12-11T14:26:39.322Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T14:26:39.322Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T14:26:39.322Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T14:26:39.322Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Wtj1MZvfRReyOR7uG_PMxQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/Wtj1MZvfRReyOR7uG_PMxQ/artifacts/public/build/target.json deleted file mode 100644 index ffbd1ea7..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Wtj1MZvfRReyOR7uG_PMxQ/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "buildid": "20191113142416", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "linux-x86_64", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "a9395b9ab89526cb934f0d4aa1dc03670c3757c0", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/Wtj1MZvfRReyOR7uG_PMxQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/Wtj1MZvfRReyOR7uG_PMxQ/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 51718130..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/Wtj1MZvfRReyOR7uG_PMxQ/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/WySN0vRISLay9uB90URIww/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/WySN0vRISLay9uB90URIww/artifacts/.get deleted file mode 100644 index 1244a549..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/WySN0vRISLay9uB90URIww/artifacts/.get +++ /dev/null @@ -1,244 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/chrome-map.json", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.code-coverage-gcno.zip", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T09:57:04.951Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/WySN0vRISLay9uB90URIww/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/WySN0vRISLay9uB90URIww/artifacts/public/build/target.json deleted file mode 100644 index 93b30626..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/WySN0vRISLay9uB90URIww/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/gcc/bin/gcc -std=gnu99", - "buildid": "20191113095525", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/gcc/bin/gcc -std=gnu99", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/gcc/bin/g++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "linux-x86_64", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "2f19e7b646e0a52fa855b75c868f0a3f3a990ad3", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/WySN0vRISLay9uB90URIww/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/WySN0vRISLay9uB90URIww/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index cdb6e35a..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/WySN0vRISLay9uB90URIww/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "gcc", - "ccov": true, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/X-LWu-ylQnyFIacsvfrDdA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/X-LWu-ylQnyFIacsvfrDdA/artifacts/.get deleted file mode 100644 index d86088ff..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/X-LWu-ylQnyFIacsvfrDdA/artifacts/.get +++ /dev/null @@ -1,208 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-11T03:09:35.425Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-11T03:09:35.425Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-11T03:09:35.425Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-11T03:09:35.425Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-11T03:09:35.425Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-11T03:09:35.425Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-11T03:09:35.425Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-11T03:09:35.425Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.425Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-11T03:09:35.425Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.425Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-11T03:09:35.425Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-11T03:09:35.425Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-11T03:09:35.425Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.425Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-11T03:09:35.425Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-11T03:09:35.425Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.425Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-11T03:09:35.425Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-11-11T03:09:35.425Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-11T03:09:35.425Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-11T03:09:35.425Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-11T03:09:35.425Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-11T03:09:35.425Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-11T03:09:35.425Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-11T03:09:35.425Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-11T03:09:35.425Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-11-11T03:09:35.425Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-11T03:09:35.425Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-11T03:09:35.425Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-11T03:09:35.425Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-11T03:09:35.425Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-11T03:09:35.425Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-11T03:09:35.425Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/X-LWu-ylQnyFIacsvfrDdA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/X-LWu-ylQnyFIacsvfrDdA/artifacts/public/build/target.json deleted file mode 100644 index 6ecb5ab8..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/X-LWu-ylQnyFIacsvfrDdA/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/workspace/build/src/clang/bin/clang -std=gnu99", - "buildid": "20191112030804", - "cc": "/builds/worker/workspace/build/src/clang/bin/clang -std=gnu99", - "cxx": "/builds/worker/workspace/build/src/clang/bin/clang++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "68.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "68.2.1", - "moz_pkg_platform": "linux-x86_64-asan", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr68", - "moz_source_stamp": "506341a9f6a39813794bca976bf298963eeebf7e", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/X-LWu-ylQnyFIacsvfrDdA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/X-LWu-ylQnyFIacsvfrDdA/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index b2b0fb26..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/X-LWu-ylQnyFIacsvfrDdA/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": true, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": false, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": false, - "os": "linux", - "pgo": false, - "platform_guess": "linux64-asan", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk3", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": true, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/X-yhvusST8WIVmn_JraLBg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/X-yhvusST8WIVmn_JraLBg/artifacts/.get deleted file mode 100644 index 95e235dc..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/X-yhvusST8WIVmn_JraLBg/artifacts/.get +++ /dev/null @@ -1,316 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/geckoview-androidTest.apk", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/geckoview_example.apk", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113000048/geckoview-default-armeabi-v7a-72.0.20191113000048-javadoc.jar", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113000048/geckoview-default-armeabi-v7a-72.0.20191113000048-javadoc.jar.md5", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113000048/geckoview-default-armeabi-v7a-72.0.20191113000048-javadoc.jar.sha1", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113000048/geckoview-default-armeabi-v7a-72.0.20191113000048-sources.jar", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113000048/geckoview-default-armeabi-v7a-72.0.20191113000048-sources.jar.md5", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113000048/geckoview-default-armeabi-v7a-72.0.20191113000048-sources.jar.sha1", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113000048/geckoview-default-armeabi-v7a-72.0.20191113000048.aar", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113000048/geckoview-default-armeabi-v7a-72.0.20191113000048.aar.md5", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113000048/geckoview-default-armeabi-v7a-72.0.20191113000048.aar.sha1", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113000048/geckoview-default-armeabi-v7a-72.0.20191113000048.pom", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113000048/geckoview-default-armeabi-v7a-72.0.20191113000048.pom.md5", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113000048/geckoview-default-armeabi-v7a-72.0.20191113000048.pom.sha1", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/xml" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml.md5", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml.sha1", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T00:03:45.451Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/X-yhvusST8WIVmn_JraLBg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/X-yhvusST8WIVmn_JraLBg/artifacts/public/build/target.json deleted file mode 100644 index ce16ad4a..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/X-yhvusST8WIVmn_JraLBg/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=arm-linux-androideabi", - "buildid": "20191113000048", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=arm-linux-androideabi", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ --target=arm-linux-androideabi", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "fennec", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "android-arm", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "77b18bc38fcfb26cbd1df38bc67ec840399a87e0", - "moz_update_channel": "default", - "target_alias": "arm-unknown-linux-androideabi", - "target_cpu": "arm", - "target_os": "linux-androideabi", - "target_vendor": "unknown" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/X-yhvusST8WIVmn_JraLBg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/X-yhvusST8WIVmn_JraLBg/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 7a6006b1..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/X-yhvusST8WIVmn_JraLBg/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "allow_legacy_extensions": true, - "android_min_sdk": "16", - "appname": "fennec", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 32, - "buildapp": "mobile/android", - "buildtype_guess": "debug", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": false, - "official": true, - "os": "android", - "pgo": false, - "platform_guess": "android-arm", - "processor": "arm", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": false, - "telemetry": false, - "tests_enabled": true, - "toolkit": "android", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/XACRhkT7RBK-xVATJLo_dQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/XACRhkT7RBK-xVATJLo_dQ/artifacts/.get new file mode 100644 index 00000000..6839fab6 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/XACRhkT7RBK-xVATJLo_dQ/artifacts/.get @@ -0,0 +1,256 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/install/sea/target.installer.exe", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/setup.exe", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.zip", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T00:40:19.246Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/XACRhkT7RBK-xVATJLo_dQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/XACRhkT7RBK-xVATJLo_dQ/artifacts/public/build/target.json new file mode 100644 index 00000000..3c8c0cd8 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/XACRhkT7RBK-xVATJLo_dQ/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/checkouts/gecko/vs2017_15.8.4/VC/bin/Hostx64/x64/ml64.exe", + "buildid": "20200727003535", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang-cl -Xclang -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang-cl -Xclang -std=c++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "win64", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "795f8a67fda8045af868f73d74d11b70b874db61", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-mingw32", + "target_cpu": "x86_64", + "target_os": "mingw32", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/XACRhkT7RBK-xVATJLo_dQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/XACRhkT7RBK-xVATJLo_dQ/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..7471beb0 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/XACRhkT7RBK-xVATJLo_dQ/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": ".exe", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang-cl", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "win", + "pgo": false, + "platform_guess": "win64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "windows", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/XL3Omi71TmOT5iYdDu5LxQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/XL3Omi71TmOT5iYdDu5LxQ/artifacts/.get new file mode 100644 index 00000000..fabea369 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/XL3Omi71TmOT5iYdDu5LxQ/artifacts/.get @@ -0,0 +1,328 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/geckoview-androidTest.apk", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/geckoview_example.apk", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727004544/geckoview-default-armeabi-v7a-80.0.20200727004544.aar", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727004544/geckoview-default-armeabi-v7a-80.0.20200727004544.aar.md5", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727004544/geckoview-default-armeabi-v7a-80.0.20200727004544.aar.sha1", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727004544/geckoview-default-armeabi-v7a-80.0.20200727004544-javadoc.jar", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727004544/geckoview-default-armeabi-v7a-80.0.20200727004544-javadoc.jar.md5", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727004544/geckoview-default-armeabi-v7a-80.0.20200727004544-javadoc.jar.sha1", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727004544/geckoview-default-armeabi-v7a-80.0.20200727004544.pom", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727004544/geckoview-default-armeabi-v7a-80.0.20200727004544.pom.md5", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727004544/geckoview-default-armeabi-v7a-80.0.20200727004544.pom.sha1", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727004544/geckoview-default-armeabi-v7a-80.0.20200727004544-sources.jar", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727004544/geckoview-default-armeabi-v7a-80.0.20200727004544-sources.jar.md5", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/80.0.20200727004544/geckoview-default-armeabi-v7a-80.0.20200727004544-sources.jar.sha1", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/xml" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml.md5", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml.sha1", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T00:53:22.616Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/XL3Omi71TmOT5iYdDu5LxQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/XL3Omi71TmOT5iYdDu5LxQ/artifacts/public/build/target.json new file mode 100644 index 00000000..74569e2c --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/XL3Omi71TmOT5iYdDu5LxQ/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=arm-linux-androideabi", + "buildid": "20200727004544", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=arm-linux-androideabi", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17 --target=arm-linux-androideabi", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "fennec", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "android-arm", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "b6fd90e8115ad0ceeb72c2172bdcf40252bb0be1", + "moz_update_channel": "default", + "target_alias": "arm-unknown-linux-androideabi", + "target_cpu": "arm", + "target_os": "linux-androideabi", + "target_vendor": "unknown" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/XL3Omi71TmOT5iYdDu5LxQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/XL3Omi71TmOT5iYdDu5LxQ/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..3ba13582 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/XL3Omi71TmOT5iYdDu5LxQ/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,37 @@ +{ + "android_min_sdk": "16", + "appname": "fennec", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 32, + "buildapp": "mobile/android", + "buildtype_guess": "debug", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": true, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": false, + "official": true, + "os": "android", + "pgo": false, + "platform_guess": "android-arm", + "processor": "arm", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": false, + "telemetry": false, + "tests_enabled": true, + "toolkit": "android", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": false +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/XPCJjSu3T-2FRWBJrMndFg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/XPCJjSu3T-2FRWBJrMndFg/artifacts/.get deleted file mode 100644 index a8f1f9fc..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/XPCJjSu3T-2FRWBJrMndFg/artifacts/.get +++ /dev/null @@ -1,322 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/geckoview-androidTest.apk", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/geckoview_example.apk", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113150854/geckoview-default-x86_64-72.0.20191113150854-javadoc.jar", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113150854/geckoview-default-x86_64-72.0.20191113150854-javadoc.jar.md5", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113150854/geckoview-default-x86_64-72.0.20191113150854-javadoc.jar.sha1", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113150854/geckoview-default-x86_64-72.0.20191113150854-sources.jar", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113150854/geckoview-default-x86_64-72.0.20191113150854-sources.jar.md5", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113150854/geckoview-default-x86_64-72.0.20191113150854-sources.jar.sha1", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113150854/geckoview-default-x86_64-72.0.20191113150854.aar", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113150854/geckoview-default-x86_64-72.0.20191113150854.aar.md5", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113150854/geckoview-default-x86_64-72.0.20191113150854.aar.sha1", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113150854/geckoview-default-x86_64-72.0.20191113150854.pom", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113150854/geckoview-default-x86_64-72.0.20191113150854.pom.md5", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113150854/geckoview-default-x86_64-72.0.20191113150854.pom.sha1", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/maven-metadata.xml", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/xml" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/maven-metadata.xml.md5", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/maven-metadata.xml.sha1", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T15:11:36.355Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/XPCJjSu3T-2FRWBJrMndFg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/XPCJjSu3T-2FRWBJrMndFg/artifacts/public/build/target.json deleted file mode 100644 index 6d7244b7..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/XPCJjSu3T-2FRWBJrMndFg/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=x86_64-linux-android", - "buildid": "20191113150854", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=x86_64-linux-android", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ --target=x86_64-linux-android", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "fennec", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "android-x86_64", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "cfa38765c407180ae40f1f10005adb73d47e1a18", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-android", - "target_cpu": "x86_64", - "target_os": "linux-android", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/XPCJjSu3T-2FRWBJrMndFg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/XPCJjSu3T-2FRWBJrMndFg/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 29a47812..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/XPCJjSu3T-2FRWBJrMndFg/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "allow_legacy_extensions": true, - "android_min_sdk": "21", - "appname": "fennec", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "mobile/android", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": false, - "official": true, - "os": "android", - "pgo": false, - "platform_guess": "android-arm", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": false, - "telemetry": false, - "tests_enabled": true, - "toolkit": "android", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/XQOMLciTTEK08x2cGQyotw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/XQOMLciTTEK08x2cGQyotw/artifacts/.get new file mode 100644 index 00000000..2685d20a --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/XQOMLciTTEK08x2cGQyotw/artifacts/.get @@ -0,0 +1,274 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/chrome-map.json", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.code-coverage-gcno.zip", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.normandy.json", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/code-coverage-grcov.zip", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T03:36:23.237Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/XQOMLciTTEK08x2cGQyotw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/XQOMLciTTEK08x2cGQyotw/artifacts/public/build/target.json new file mode 100644 index 00000000..b10aeb5c --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/XQOMLciTTEK08x2cGQyotw/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/gcc/bin/gcc -std=gnu99", + "buildid": "20200727033000", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/gcc/bin/gcc -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/gcc/bin/g++ -std=gnu++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-x86_64", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "56082fc4acfacba40993e47ef8302993c59e264e", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/XQOMLciTTEK08x2cGQyotw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/XQOMLciTTEK08x2cGQyotw/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..5ab7bd5c --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/XQOMLciTTEK08x2cGQyotw/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "gcc", + "ccov": true, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "linux", + "pgo": false, + "platform_guess": "linux64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/XTw9IgQkRHqMiVl7I_jJGQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/XTw9IgQkRHqMiVl7I_jJGQ/artifacts/.get deleted file mode 100644 index 2937026b..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/XTw9IgQkRHqMiVl7I_jJGQ/artifacts/.get +++ /dev/null @@ -1,316 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/geckoview-androidTest.apk", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/geckoview_example.apk", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113154133/geckoview-default-armeabi-v7a-72.0.20191113154133-javadoc.jar", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113154133/geckoview-default-armeabi-v7a-72.0.20191113154133-javadoc.jar.md5", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113154133/geckoview-default-armeabi-v7a-72.0.20191113154133-javadoc.jar.sha1", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113154133/geckoview-default-armeabi-v7a-72.0.20191113154133-sources.jar", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113154133/geckoview-default-armeabi-v7a-72.0.20191113154133-sources.jar.md5", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113154133/geckoview-default-armeabi-v7a-72.0.20191113154133-sources.jar.sha1", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113154133/geckoview-default-armeabi-v7a-72.0.20191113154133.aar", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113154133/geckoview-default-armeabi-v7a-72.0.20191113154133.aar.md5", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113154133/geckoview-default-armeabi-v7a-72.0.20191113154133.aar.sha1", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113154133/geckoview-default-armeabi-v7a-72.0.20191113154133.pom", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113154133/geckoview-default-armeabi-v7a-72.0.20191113154133.pom.md5", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113154133/geckoview-default-armeabi-v7a-72.0.20191113154133.pom.sha1", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/xml" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml.md5", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml.sha1", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T15:43:54.535Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/XTw9IgQkRHqMiVl7I_jJGQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/XTw9IgQkRHqMiVl7I_jJGQ/artifacts/public/build/target.json deleted file mode 100644 index af92382b..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/XTw9IgQkRHqMiVl7I_jJGQ/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=arm-linux-androideabi", - "buildid": "20191113154133", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=arm-linux-androideabi", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ --target=arm-linux-androideabi", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "fennec", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "android-arm", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "d298d18c39dd5c2393e6e132bc119a9d99423569", - "moz_update_channel": "default", - "target_alias": "arm-unknown-linux-androideabi", - "target_cpu": "arm", - "target_os": "linux-androideabi", - "target_vendor": "unknown" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/XTw9IgQkRHqMiVl7I_jJGQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/XTw9IgQkRHqMiVl7I_jJGQ/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 7cf3aa44..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/XTw9IgQkRHqMiVl7I_jJGQ/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "allow_legacy_extensions": true, - "android_min_sdk": "16", - "appname": "fennec", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 32, - "buildapp": "mobile/android", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": false, - "official": true, - "os": "android", - "pgo": false, - "platform_guess": "android-arm", - "processor": "arm", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": false, - "telemetry": false, - "tests_enabled": true, - "toolkit": "android", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/XX1wCY_gRNqjaHFkpoVxLg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/XX1wCY_gRNqjaHFkpoVxLg/artifacts/.get deleted file mode 100644 index 983ab3b5..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/XX1wCY_gRNqjaHFkpoVxLg/artifacts/.get +++ /dev/null @@ -1,226 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-11T03:09:35.393Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-11T03:09:35.393Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar.exe", - "expires": "2020-11-11T03:09:35.393Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff.exe", - "expires": "2020-11-11T03:09:35.393Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/install/sea/target.installer.exe", - "expires": "2020-11-11T03:09:35.393Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-11T03:09:35.393Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/setup.exe", - "expires": "2020-11-11T03:09:35.393Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-11T03:09:35.393Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-11T03:09:35.393Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-11T03:09:35.393Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.393Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-11T03:09:35.393Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-11T03:09:35.393Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-11T03:09:35.393Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.393Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-11T03:09:35.393Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-11T03:09:35.393Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-11T03:09:35.393Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.393Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-11T03:09:35.393Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-11T03:09:35.393Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-11T03:09:35.393Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-11T03:09:35.393Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-11T03:09:35.393Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-11T03:09:35.393Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-11T03:09:35.393Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-11T03:09:35.393Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-11T03:09:35.393Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.zip", - "expires": "2020-11-11T03:09:35.393Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-11T03:09:35.393Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-11T03:09:35.393Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-11T03:09:35.393Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-11T03:09:35.393Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-11T03:09:35.393Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-11T03:09:35.393Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-11T03:09:35.393Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-11T03:09:35.393Z", - "contentType": "application/octet-stream" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/XX1wCY_gRNqjaHFkpoVxLg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/XX1wCY_gRNqjaHFkpoVxLg/artifacts/public/build/target.json deleted file mode 100644 index cf8425f1..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/XX1wCY_gRNqjaHFkpoVxLg/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "z:/build/build/src/vs2017_15.8.4/VC/bin/HostX64/x64/ml64.exe", - "buildid": "20191112030804", - "cc": "z:/build/build/src/clang/bin/clang-cl.exe -Xclang -std=gnu99", - "cxx": "z:/build/build/src/clang/bin/clang-cl.exe", - "host_alias": "x86_64-pc-mingw32", - "host_cpu": "x86_64", - "host_os": "mingw32", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "68.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "68.2.1", - "moz_pkg_platform": "win64", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr68", - "moz_source_stamp": "506341a9f6a39813794bca976bf298963eeebf7e", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-mingw32", - "target_cpu": "x86_64", - "target_os": "mingw32", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/XX1wCY_gRNqjaHFkpoVxLg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/XX1wCY_gRNqjaHFkpoVxLg/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 64451e50..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/XX1wCY_gRNqjaHFkpoVxLg/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": ".exe", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "cc_type": "clang-cl", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "z:/build/build/src/.mozconfig", - "nightly_build": false, - "official": true, - "os": "win", - "pgo": false, - "platform_guess": "win64", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "windows", - "topsrcdir": "z:/build/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/XfkwuG8xQ0Ov8io69jyS7A/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/XfkwuG8xQ0Ov8io69jyS7A/artifacts/.get deleted file mode 100644 index d8305044..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/XfkwuG8xQ0Ov8io69jyS7A/artifacts/.get +++ /dev/null @@ -1,226 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T04:51:49.602Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T04:51:49.602Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T04:51:49.602Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T04:51:49.602Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T04:51:49.602Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-12T04:51:49.602Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T04:51:49.602Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T04:51:49.602Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T04:51:49.602Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T04:51:49.602Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T04:51:49.602Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T04:51:49.602Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T04:51:49.602Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.dmg", - "expires": "2020-11-12T04:51:49.602Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T04:51:49.602Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-12T04:51:49.602Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T04:51:49.602Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T04:51:49.602Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-12T04:51:49.602Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T04:51:49.602Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T04:51:49.602Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T04:51:49.602Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T04:51:49.602Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T04:51:49.602Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T04:51:49.602Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T04:51:49.602Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T04:51:49.602Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T04:51:49.602Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T04:51:49.602Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T04:51:49.602Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-12T04:51:49.602Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T04:51:49.602Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T04:51:49.602Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T04:51:49.602Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T04:51:49.602Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T04:51:49.602Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T04:51:49.602Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/XfkwuG8xQ0Ov8io69jyS7A/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/XfkwuG8xQ0Ov8io69jyS7A/artifacts/public/build/target.json deleted file mode 100644 index 9fac6bad..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/XfkwuG8xQ0Ov8io69jyS7A/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", - "buildid": "20191113044959", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk --target=x86_64-apple-darwin", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "mac-asan", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "48a708577712a2eb1b19aafcda25b2aa0e607629", - "moz_update_channel": "default", - "target_alias": "x86_64-apple-darwin", - "target_cpu": "x86_64", - "target_os": "darwin", - "target_vendor": "apple" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/XfkwuG8xQ0Ov8io69jyS7A/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/XfkwuG8xQ0Ov8io69jyS7A/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index da4ac7df..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/XfkwuG8xQ0Ov8io69jyS7A/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": true, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": false, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": false, - "os": "mac", - "pgo": false, - "platform_guess": "macosx64-asan", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "cocoa", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/XsmPa2F0SHm5LP4bU5e8qw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/XsmPa2F0SHm5LP4bU5e8qw/artifacts/.get deleted file mode 100644 index d18d8005..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/XsmPa2F0SHm5LP4bU5e8qw/artifacts/.get +++ /dev/null @@ -1,238 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T04:51:48.635Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/XsmPa2F0SHm5LP4bU5e8qw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/XsmPa2F0SHm5LP4bU5e8qw/artifacts/public/build/target.json deleted file mode 100644 index 87790a1c..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/XsmPa2F0SHm5LP4bU5e8qw/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 -m32", - "buildid": "20191113044959", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 -m32", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -m32", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "linux-i686", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "48a708577712a2eb1b19aafcda25b2aa0e607629", - "moz_update_channel": "default", - "target_alias": "i686-pc-linux-gnu", - "target_cpu": "i686", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/XsmPa2F0SHm5LP4bU5e8qw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/XsmPa2F0SHm5LP4bU5e8qw/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 811dd91a..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/XsmPa2F0SHm5LP4bU5e8qw/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 32, - "buildapp": "browser", - "buildtype_guess": "debug", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "linux", - "pgo": false, - "platform_guess": "linux", - "processor": "x86", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/XyeuXpIcQdWwbr71NUJntA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/XyeuXpIcQdWwbr71NUJntA/artifacts/.get deleted file mode 100644 index bfcca6a0..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/XyeuXpIcQdWwbr71NUJntA/artifacts/.get +++ /dev/null @@ -1,238 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.dmg", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T04:51:48.686Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/XyeuXpIcQdWwbr71NUJntA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/XyeuXpIcQdWwbr71NUJntA/artifacts/public/build/target.json deleted file mode 100644 index 615b477a..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/XyeuXpIcQdWwbr71NUJntA/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", - "buildid": "20191113044959", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk --target=x86_64-apple-darwin", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "mac", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "48a708577712a2eb1b19aafcda25b2aa0e607629", - "moz_update_channel": "default", - "target_alias": "x86_64-apple-darwin", - "target_cpu": "x86_64", - "target_os": "darwin", - "target_vendor": "apple" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/XyeuXpIcQdWwbr71NUJntA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/XyeuXpIcQdWwbr71NUJntA/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 9a5fff6e..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/XyeuXpIcQdWwbr71NUJntA/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "mac", - "pgo": false, - "platform_guess": "macosx64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "cocoa", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/YL2LGRyhRviFhKS_9-Brkg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/YL2LGRyhRviFhKS_9-Brkg/artifacts/.get deleted file mode 100644 index 0b3f3b98..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/YL2LGRyhRviFhKS_9-Brkg/artifacts/.get +++ /dev/null @@ -1,238 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T04:51:49.552Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/YL2LGRyhRviFhKS_9-Brkg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/YL2LGRyhRviFhKS_9-Brkg/artifacts/public/build/target.json deleted file mode 100644 index c0106c2e..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/YL2LGRyhRviFhKS_9-Brkg/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "buildid": "20191113044959", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "linux-x86_64", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "48a708577712a2eb1b19aafcda25b2aa0e607629", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/YL2LGRyhRviFhKS_9-Brkg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/YL2LGRyhRviFhKS_9-Brkg/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index b4ea19e5..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/YL2LGRyhRviFhKS_9-Brkg/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/YLL_snAESdOl6DtLR6SmdQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/YLL_snAESdOl6DtLR6SmdQ/artifacts/.get new file mode 100644 index 00000000..61010ff1 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/YLL_snAESdOl6DtLR6SmdQ/artifacts/.get @@ -0,0 +1,238 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.normandy.json", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T14:01:21.519Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/YLL_snAESdOl6DtLR6SmdQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/YLL_snAESdOl6DtLR6SmdQ/artifacts/public/build/target.json new file mode 100644 index 00000000..9afdd7c0 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/YLL_snAESdOl6DtLR6SmdQ/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "", + "buildid": "20200727135612", + "cc": "", + "cxx": "", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-x86_64", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "76120fed0d42283463b8e066be47892ec427aa67", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/YLL_snAESdOl6DtLR6SmdQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/YLL_snAESdOl6DtLR6SmdQ/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..b3e7eb59 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/YLL_snAESdOl6DtLR6SmdQ/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": true, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": null, + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "linux", + "pgo": false, + "platform_guess": "linux64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/YqmZbJ9ZS8WiFDRiqLLngA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/YqmZbJ9ZS8WiFDRiqLLngA/artifacts/.get new file mode 100644 index 00000000..f5163736 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/YqmZbJ9ZS8WiFDRiqLLngA/artifacts/.get @@ -0,0 +1,160 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T09:55:01.027Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T09:55:01.027Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T09:55:01.027Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T09:55:01.027Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2021-07-27T09:55:01.027Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2021-07-27T09:55:01.027Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T09:55:01.027Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T09:55:01.027Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T09:55:01.027Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2021-07-27T09:55:01.027Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T09:55:01.027Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T09:55:01.027Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T09:55:01.027Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T09:55:01.027Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T09:55:01.027Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T09:55:01.027Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T09:55:01.027Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2021-07-27T09:55:01.027Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T09:55:01.027Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2021-07-27T09:55:01.027Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T09:55:01.027Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T09:55:01.027Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T09:55:01.027Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T09:55:01.027Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T09:55:01.027Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T09:55:01.027Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/YqmZbJ9ZS8WiFDRiqLLngA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/YqmZbJ9ZS8WiFDRiqLLngA/artifacts/public/build/target.json new file mode 100644 index 00000000..fb71c856 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/YqmZbJ9ZS8WiFDRiqLLngA/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 -m32", + "buildid": "20200727095125", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 -m32", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17 -m32", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-i686", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "798bdad605b985a71cd204a56bb816dea503d432", + "moz_update_channel": "default", + "target_alias": "i686-pc-linux-gnu", + "target_cpu": "i686", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/YqmZbJ9ZS8WiFDRiqLLngA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/YqmZbJ9ZS8WiFDRiqLLngA/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..a8bc1fbc --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/YqmZbJ9ZS8WiFDRiqLLngA/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 32, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "linux", + "pgo": false, + "platform_guess": "linux", + "processor": "x86", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/YyMBvE7VS-GW50WQg_RCBg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/YyMBvE7VS-GW50WQg_RCBg/artifacts/.get deleted file mode 100644 index e74478fd..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/YyMBvE7VS-GW50WQg_RCBg/artifacts/.get +++ /dev/null @@ -1,220 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-11T22:30:46.503Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-11T22:30:46.503Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-11T22:30:46.503Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-11T22:30:46.503Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-11T22:30:46.503Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-11T22:30:46.503Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-11T22:30:46.503Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-11T22:30:46.503Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-11T22:30:46.503Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-11T22:30:46.503Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-11T22:30:46.503Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-11T22:30:46.503Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-11T22:30:46.503Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-11T22:30:46.503Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-11T22:30:46.503Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-11T22:30:46.503Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-11T22:30:46.503Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-11T22:30:46.503Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-11T22:30:46.503Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-11T22:30:46.503Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-11T22:30:46.503Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-11-11T22:30:46.503Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-11T22:30:46.503Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-11T22:30:46.503Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-11T22:30:46.503Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-11T22:30:46.503Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-11T22:30:46.503Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-11T22:30:46.503Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-11T22:30:46.503Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-11-11T22:30:46.503Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-11T22:30:46.503Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-11T22:30:46.503Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-11T22:30:46.503Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-11T22:30:46.503Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-11T22:30:46.503Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-11T22:30:46.503Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/YyMBvE7VS-GW50WQg_RCBg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/YyMBvE7VS-GW50WQg_RCBg/artifacts/public/build/target.json deleted file mode 100644 index 0393824d..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/YyMBvE7VS-GW50WQg_RCBg/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/workspace/build/src/clang/bin/clang -std=gnu99", - "buildid": "20191112222920", - "cc": "/builds/worker/workspace/build/src/clang/bin/clang -std=gnu99", - "cxx": "/builds/worker/workspace/build/src/clang/bin/clang++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "68.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "68.2.1", - "moz_pkg_platform": "linux-x86_64", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr68", - "moz_source_stamp": "939a3aec03d304a0a3e3b003e26965c6e95ec211", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/YyMBvE7VS-GW50WQg_RCBg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/YyMBvE7VS-GW50WQg_RCBg/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 0e387e58..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/YyMBvE7VS-GW50WQg_RCBg/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": true, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk3", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Z5jAUsk5TMKMIeB0HsW8-A/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/Z5jAUsk5TMKMIeB0HsW8-A/artifacts/.get new file mode 100644 index 00000000..8fcb988b --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/Z5jAUsk5TMKMIeB0HsW8-A/artifacts/.get @@ -0,0 +1,154 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T13:52:34.901Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T13:52:34.901Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T13:52:34.901Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T13:52:34.901Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2020-08-24T13:52:34.901Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2020-08-24T13:52:34.901Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T13:52:34.901Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T13:52:34.901Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T13:52:34.901Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-24T13:52:34.901Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T13:52:34.901Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T13:52:34.901Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T13:52:34.901Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2020-08-24T13:52:34.901Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T13:52:34.901Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.normandy.json", + "expires": "2020-08-24T13:52:34.901Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2020-08-24T13:52:34.901Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T13:52:34.901Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2020-08-24T13:52:34.901Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T13:52:34.901Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T13:52:34.901Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T13:52:34.901Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T13:52:34.901Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T13:52:34.901Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T13:52:34.901Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Z5jAUsk5TMKMIeB0HsW8-A/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/Z5jAUsk5TMKMIeB0HsW8-A/artifacts/public/build/target.json new file mode 100644 index 00000000..55626e3d --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/Z5jAUsk5TMKMIeB0HsW8-A/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "buildid": "20200727134637", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-x86_64-fuzzing", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "fd56c548bf68b70f8a4bbfbf553fdfc83c9cf956", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/Z5jAUsk5TMKMIeB0HsW8-A/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/Z5jAUsk5TMKMIeB0HsW8-A/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..b3e9238a --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/Z5jAUsk5TMKMIeB0HsW8-A/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "debug", + "cc_type": "clang", + "ccov": false, + "crashreporter": false, + "datareporting": true, + "debug": true, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": false, + "os": "linux", + "pgo": false, + "platform_guess": "linux64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/ZIUtxeA1TYmvBJLmA0YRZw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/ZIUtxeA1TYmvBJLmA0YRZw/artifacts/.get deleted file mode 100644 index eb1604e0..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/ZIUtxeA1TYmvBJLmA0YRZw/artifacts/.get +++ /dev/null @@ -1,250 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.zip", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.zip", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.zip", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.zip", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.zip", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.zip", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.stylo-bindings.zip", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.zip", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.zip", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/logs/log_critical.log", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_debug.log", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_error.log", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_fatal.log", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_info.log", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_raw.log", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_warning.log", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "text/plain" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/ZIUtxeA1TYmvBJLmA0YRZw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/ZIUtxeA1TYmvBJLmA0YRZw/artifacts/public/build/target.json deleted file mode 100644 index 3ea93bf0..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/ZIUtxeA1TYmvBJLmA0YRZw/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "$(CC)", - "buildid": "20191014131614", - "cc": "/builds/worker/workspace/build/src/gcc/bin/gcc -m32 -march=pentium-m -std=gnu99", - "cxx": "/builds/worker/workspace/build/src/gcc/bin/g++ -m32 -march=pentium-m", - "host_alias": "i686-pc-linux-gnu", - "host_cpu": "i686", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "60.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "60.9.1", - "moz_pkg_platform": "linux-i686", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr60", - "moz_source_stamp": "e67641c2e4ccd1fe2d4cd522b6575adec838697a", - "moz_update_channel": "default", - "target_alias": "i686-pc-linux-gnu", - "target_cpu": "i686", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/ZIUtxeA1TYmvBJLmA0YRZw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/ZIUtxeA1TYmvBJLmA0YRZw/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index a61ba5c8..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/ZIUtxeA1TYmvBJLmA0YRZw/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "addon_signing": true, - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 32, - "buildapp": "browser", - "buildtype_guess": "pgo", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": true, - "os": "linux", - "pgo": true, - "platform_guess": "linux", - "processor": "x86", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk3", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/ZLg-J4GcQAqBSk4wscC4Zg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/ZLg-J4GcQAqBSk4wscC4Zg/artifacts/.get new file mode 100644 index 00000000..927d87b3 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/ZLg-J4GcQAqBSk4wscC4Zg/artifacts/.get @@ -0,0 +1,250 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.normandy.json", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T09:55:01.673Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/ZLg-J4GcQAqBSk4wscC4Zg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/ZLg-J4GcQAqBSk4wscC4Zg/artifacts/public/build/target.json new file mode 100644 index 00000000..d3ae94fe --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/ZLg-J4GcQAqBSk4wscC4Zg/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "buildid": "20200727095125", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-x86_64-tsan", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "798bdad605b985a71cd204a56bb816dea503d432", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/ZLg-J4GcQAqBSk4wscC4Zg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/ZLg-J4GcQAqBSk4wscC4Zg/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..ea907cb4 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/ZLg-J4GcQAqBSk4wscC4Zg/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": false, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": false, + "os": "linux", + "pgo": false, + "platform_guess": "linux64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": true, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/ZOtp1_ZJT3iBI0RlqUe6Sw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/ZOtp1_ZJT3iBI0RlqUe6Sw/artifacts/.get new file mode 100644 index 00000000..4e764c09 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/ZOtp1_ZJT3iBI0RlqUe6Sw/artifacts/.get @@ -0,0 +1,160 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T08:59:09.021Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T08:59:09.021Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T08:59:09.021Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T08:59:09.021Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2020-08-24T08:59:09.021Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2020-08-24T08:59:09.021Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T08:59:09.021Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T08:59:09.021Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T08:59:09.021Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2020-08-24T08:59:09.021Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2020-08-24T08:59:09.021Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-24T08:59:09.021Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T08:59:09.021Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T08:59:09.021Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T08:59:09.021Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2020-08-24T08:59:09.021Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T08:59:09.021Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2020-08-24T08:59:09.021Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T08:59:09.021Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2020-08-24T08:59:09.021Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T08:59:09.021Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T08:59:09.021Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T08:59:09.021Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T08:59:09.021Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T08:59:09.021Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T08:59:09.021Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/ZOtp1_ZJT3iBI0RlqUe6Sw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/ZOtp1_ZJT3iBI0RlqUe6Sw/artifacts/public/build/target.json new file mode 100644 index 00000000..ad93e967 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/ZOtp1_ZJT3iBI0RlqUe6Sw/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 -m32", + "buildid": "20200727085208", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 -m32", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17 -m32", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-i686", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "6e604e8ff32ade90bdee21b40366c365039ec7f2", + "moz_update_channel": "default", + "target_alias": "i686-pc-linux-gnu", + "target_cpu": "i686", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/ZOtp1_ZJT3iBI0RlqUe6Sw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/ZOtp1_ZJT3iBI0RlqUe6Sw/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..a8bc1fbc --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/ZOtp1_ZJT3iBI0RlqUe6Sw/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 32, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "linux", + "pgo": false, + "platform_guess": "linux", + "processor": "x86", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Zgd3NZSmQTy3jDpHPGs0tw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/Zgd3NZSmQTy3jDpHPGs0tw/artifacts/.get new file mode 100644 index 00000000..ec30cd0e --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/Zgd3NZSmQTy3jDpHPGs0tw/artifacts/.get @@ -0,0 +1,256 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.normandy.json", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T00:11:28.196Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/Zgd3NZSmQTy3jDpHPGs0tw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/Zgd3NZSmQTy3jDpHPGs0tw/artifacts/public/build/target.json new file mode 100644 index 00000000..fe701a57 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/Zgd3NZSmQTy3jDpHPGs0tw/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "buildid": "20200727000601", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-x86_64", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "de7ed23b45402b6ebf767af202917e6082caa8dd", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/Zgd3NZSmQTy3jDpHPGs0tw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/Zgd3NZSmQTy3jDpHPGs0tw/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..1d743acb --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/Zgd3NZSmQTy3jDpHPGs0tw/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "debug", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": true, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "linux", + "pgo": false, + "platform_guess": "linux64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/ZlOOTdjoSpaqmnU6f0lE3A/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/ZlOOTdjoSpaqmnU6f0lE3A/artifacts/.get deleted file mode 100644 index 1d71b081..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/ZlOOTdjoSpaqmnU6f0lE3A/artifacts/.get +++ /dev/null @@ -1,226 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-12-16T16:19:58.413Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-12-16T16:19:58.413Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-12-16T16:19:58.413Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-12-16T16:19:58.413Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-12-16T16:19:58.413Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-12-16T16:19:58.413Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-12-16T16:19:58.413Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-12-16T16:19:58.413Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-12-16T16:19:58.413Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-12-16T16:19:58.413Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-12-16T16:19:58.413Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-12-16T16:19:58.413Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-12-16T16:19:58.413Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-12-16T16:19:58.413Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-12-16T16:19:58.413Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-12-16T16:19:58.413Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-12-16T16:19:58.413Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-12-16T16:19:58.413Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-12-16T16:19:58.413Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-12-16T16:19:58.413Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-12-16T16:19:58.413Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-12-16T16:19:58.413Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-12-16T16:19:58.413Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-12-16T16:19:58.413Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-12-16T16:19:58.413Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-12-16T16:19:58.413Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-12-16T16:19:58.413Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-12-16T16:19:58.413Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-12-16T16:19:58.413Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-12-16T16:19:58.413Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-12-16T16:19:58.413Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-12-16T16:19:58.413Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-12-16T16:19:58.413Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-12-16T16:19:58.413Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-12-16T16:19:58.413Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-12-16T16:19:58.413Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-12-16T16:19:58.413Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/ZlOOTdjoSpaqmnU6f0lE3A/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/ZlOOTdjoSpaqmnU6f0lE3A/artifacts/public/build/target.json deleted file mode 100644 index c3685ad0..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/ZlOOTdjoSpaqmnU6f0lE3A/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "buildid": "20191217161753", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "73.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "73.0a1", - "moz_pkg_platform": "linux-x86_64-tsan", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "930ad6def3c7961c82b2af20b66be3351603684f", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/ZlOOTdjoSpaqmnU6f0lE3A/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/ZlOOTdjoSpaqmnU6f0lE3A/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 73d68511..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/ZlOOTdjoSpaqmnU6f0lE3A/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": false, - "datareporting": true, - "debug": false, - "devedition": false, - "early_beta_or_earlier": true, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": false, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": true, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/ZlZumNTUS8uWueDjppunKA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/ZlZumNTUS8uWueDjppunKA/artifacts/.get new file mode 100644 index 00000000..26dc4ff3 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/ZlZumNTUS8uWueDjppunKA/artifacts/.get @@ -0,0 +1,262 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "text/html; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar.exe", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "application/x-msdownload" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff.exe", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "application/x-msdownload" + }, + { + "storageType": "s3", + "name": "public/build/install/sea/target.installer.exe", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "application/x-msdownload" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "application/x-zip-compressed" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/setup.exe", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "application/x-msdownload" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "application/x-gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "application/x-gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "application/x-gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "application/x-gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "application/x-gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "application/x-gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "application/x-gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "application/x-gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "application/x-zip-compressed" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "application/x-gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.normandy.json", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "application/x-gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "application/x-gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "application/x-gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "application/x-gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "application/x-gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "application/x-gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "application/x-gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.zip", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "application/x-zip-compressed" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T03:36:23.273Z", + "contentType": "application/octet-stream" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/ZlZumNTUS8uWueDjppunKA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/ZlZumNTUS8uWueDjppunKA/artifacts/public/build/target.json new file mode 100644 index 00000000..68b12183 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/ZlZumNTUS8uWueDjppunKA/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "z:/build/build/src/vs2017_15.8.4/VC/bin/HostX64/x64/ml64.exe", + "buildid": "20200727033000", + "cc": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe -Xclang -std=gnu99", + "cxx": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe -Xclang -std=c++17", + "host_alias": "x86_64-pc-mingw32", + "host_cpu": "x86_64", + "host_os": "mingw32", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "win64-asan", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "56082fc4acfacba40993e47ef8302993c59e264e", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-mingw32", + "target_cpu": "x86_64", + "target_os": "mingw32", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/ZlZumNTUS8uWueDjppunKA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/ZlZumNTUS8uWueDjppunKA/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..1cfb0fcc --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/ZlZumNTUS8uWueDjppunKA/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": true, + "bin_suffix": ".exe", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang-cl", + "ccov": false, + "crashreporter": false, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "z:/build/build/src/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": false, + "os": "win", + "pgo": false, + "platform_guess": "win64-asan", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "windows", + "topsrcdir": "z:/build/build/src", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/aT1N0dq1RV22pTlCW8glJg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/aT1N0dq1RV22pTlCW8glJg/artifacts/.get new file mode 100644 index 00000000..5c58e2e1 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/aT1N0dq1RV22pTlCW8glJg/artifacts/.get @@ -0,0 +1,160 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T03:36:23.724Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T03:36:23.724Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T03:36:23.724Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T03:36:23.724Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2021-07-27T03:36:23.724Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2021-07-27T03:36:23.724Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T03:36:23.724Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T03:36:23.724Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T03:36:23.724Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2021-07-27T03:36:23.724Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T03:36:23.724Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T03:36:23.724Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T03:36:23.724Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T03:36:23.724Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T03:36:23.724Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T03:36:23.724Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T03:36:23.724Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2021-07-27T03:36:23.724Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T03:36:23.724Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2021-07-27T03:36:23.724Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T03:36:23.724Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T03:36:23.724Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T03:36:23.724Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T03:36:23.724Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T03:36:23.724Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T03:36:23.724Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/aT1N0dq1RV22pTlCW8glJg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/aT1N0dq1RV22pTlCW8glJg/artifacts/public/build/target.json new file mode 100644 index 00000000..f26688c7 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/aT1N0dq1RV22pTlCW8glJg/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 -m32", + "buildid": "20200727033000", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 -m32", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17 -m32", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-i686", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "56082fc4acfacba40993e47ef8302993c59e264e", + "moz_update_channel": "default", + "target_alias": "i686-pc-linux-gnu", + "target_cpu": "i686", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/aT1N0dq1RV22pTlCW8glJg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/aT1N0dq1RV22pTlCW8glJg/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..8796b52c --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/aT1N0dq1RV22pTlCW8glJg/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 32, + "buildapp": "browser", + "buildtype_guess": "debug", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": true, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "linux", + "pgo": false, + "platform_guess": "linux", + "processor": "x86", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/aaEKMLiES8OhY-pLhg8UOg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/aaEKMLiES8OhY-pLhg8UOg/artifacts/.get deleted file mode 100644 index edbb8154..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/aaEKMLiES8OhY-pLhg8UOg/artifacts/.get +++ /dev/null @@ -1,316 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/geckoview-androidTest.apk", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/geckoview_example.apk", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113000048/geckoview-default-arm64-v8a-72.0.20191113000048-javadoc.jar", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113000048/geckoview-default-arm64-v8a-72.0.20191113000048-javadoc.jar.md5", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113000048/geckoview-default-arm64-v8a-72.0.20191113000048-javadoc.jar.sha1", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113000048/geckoview-default-arm64-v8a-72.0.20191113000048-sources.jar", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113000048/geckoview-default-arm64-v8a-72.0.20191113000048-sources.jar.md5", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113000048/geckoview-default-arm64-v8a-72.0.20191113000048-sources.jar.sha1", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113000048/geckoview-default-arm64-v8a-72.0.20191113000048.aar", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113000048/geckoview-default-arm64-v8a-72.0.20191113000048.aar.md5", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113000048/geckoview-default-arm64-v8a-72.0.20191113000048.aar.sha1", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113000048/geckoview-default-arm64-v8a-72.0.20191113000048.pom", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113000048/geckoview-default-arm64-v8a-72.0.20191113000048.pom.md5", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/72.0.20191113000048/geckoview-default-arm64-v8a-72.0.20191113000048.pom.sha1", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/maven-metadata.xml", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/xml" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/maven-metadata.xml.md5", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/maven-metadata.xml.sha1", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T00:03:46.816Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/aaEKMLiES8OhY-pLhg8UOg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/aaEKMLiES8OhY-pLhg8UOg/artifacts/public/build/target.json deleted file mode 100644 index 9fda2da9..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/aaEKMLiES8OhY-pLhg8UOg/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=aarch64-linux-android", - "buildid": "20191113000048", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=aarch64-linux-android", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ --target=aarch64-linux-android", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "fennec", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "android-aarch64", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "77b18bc38fcfb26cbd1df38bc67ec840399a87e0", - "moz_update_channel": "default", - "target_alias": "aarch64-unknown-linux-android", - "target_cpu": "aarch64", - "target_os": "linux-android", - "target_vendor": "unknown" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/aaEKMLiES8OhY-pLhg8UOg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/aaEKMLiES8OhY-pLhg8UOg/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index f5f7f9e8..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/aaEKMLiES8OhY-pLhg8UOg/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "allow_legacy_extensions": true, - "android_min_sdk": "21", - "appname": "fennec", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "mobile/android", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": false, - "official": true, - "os": "android", - "pgo": false, - "platform_guess": "android-arm", - "processor": "aarch64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": false, - "telemetry": false, - "tests_enabled": true, - "toolkit": "android", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/aagfJV-WQXWO03_119KAXw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/aagfJV-WQXWO03_119KAXw/artifacts/.get new file mode 100644 index 00000000..0208dbef --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/aagfJV-WQXWO03_119KAXw/artifacts/.get @@ -0,0 +1,160 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T09:55:01.023Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T09:55:01.023Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T09:55:01.023Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T09:55:01.023Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2021-07-27T09:55:01.023Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2021-07-27T09:55:01.023Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T09:55:01.023Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T09:55:01.023Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T09:55:01.023Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2021-07-27T09:55:01.023Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T09:55:01.023Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T09:55:01.023Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T09:55:01.023Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T09:55:01.023Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T09:55:01.023Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T09:55:01.023Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T09:55:01.023Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2021-07-27T09:55:01.023Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T09:55:01.023Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2021-07-27T09:55:01.023Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T09:55:01.023Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T09:55:01.023Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T09:55:01.023Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T09:55:01.023Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T09:55:01.023Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T09:55:01.023Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/aagfJV-WQXWO03_119KAXw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/aagfJV-WQXWO03_119KAXw/artifacts/public/build/target.json new file mode 100644 index 00000000..fb71c856 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/aagfJV-WQXWO03_119KAXw/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 -m32", + "buildid": "20200727095125", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 -m32", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17 -m32", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-i686", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "798bdad605b985a71cd204a56bb816dea503d432", + "moz_update_channel": "default", + "target_alias": "i686-pc-linux-gnu", + "target_cpu": "i686", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/aagfJV-WQXWO03_119KAXw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/aagfJV-WQXWO03_119KAXw/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..8796b52c --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/aagfJV-WQXWO03_119KAXw/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 32, + "buildapp": "browser", + "buildtype_guess": "debug", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": true, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "linux", + "pgo": false, + "platform_guess": "linux", + "processor": "x86", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/ap8Z5BtET26PIhbtZuvNfA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/ap8Z5BtET26PIhbtZuvNfA/artifacts/.get new file mode 100644 index 00000000..00d50ad1 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/ap8Z5BtET26PIhbtZuvNfA/artifacts/.get @@ -0,0 +1,154 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T03:36:23.932Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T03:36:23.932Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T03:36:23.932Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T03:36:23.932Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2021-07-27T03:36:23.932Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2021-07-27T03:36:23.932Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T03:36:23.932Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T03:36:23.932Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T03:36:23.932Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T03:36:23.932Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T03:36:23.932Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T03:36:23.932Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T03:36:23.932Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T03:36:23.932Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T03:36:23.932Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.normandy.json", + "expires": "2021-07-27T03:36:23.932Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2021-07-27T03:36:23.932Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T03:36:23.932Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2021-07-27T03:36:23.932Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T03:36:23.932Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T03:36:23.932Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T03:36:23.932Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T03:36:23.932Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T03:36:23.932Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T03:36:23.932Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/ap8Z5BtET26PIhbtZuvNfA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/ap8Z5BtET26PIhbtZuvNfA/artifacts/public/build/target.json new file mode 100644 index 00000000..f6fcf60c --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/ap8Z5BtET26PIhbtZuvNfA/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "buildid": "20200727033000", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-x86_64-fuzzing", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "56082fc4acfacba40993e47ef8302993c59e264e", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/ap8Z5BtET26PIhbtZuvNfA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/ap8Z5BtET26PIhbtZuvNfA/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..b3e9238a --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/ap8Z5BtET26PIhbtZuvNfA/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "debug", + "cc_type": "clang", + "ccov": false, + "crashreporter": false, + "datareporting": true, + "debug": true, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": false, + "os": "linux", + "pgo": false, + "platform_guess": "linux64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/apS4cd3fTcSIv5R4zNFSbA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/apS4cd3fTcSIv5R4zNFSbA/artifacts/.get deleted file mode 100644 index ee4744a8..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/apS4cd3fTcSIv5R4zNFSbA/artifacts/.get +++ /dev/null @@ -1,250 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "text/html; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar.exe", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff.exe", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/install/sea/target.installer.exe", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/setup.exe", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.zip", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T04:51:48.648Z", - "contentType": "application/octet-stream" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/apS4cd3fTcSIv5R4zNFSbA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/apS4cd3fTcSIv5R4zNFSbA/artifacts/public/build/target.json deleted file mode 100644 index 7f427e2b..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/apS4cd3fTcSIv5R4zNFSbA/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "z:/build/build/src/vs2017_15.8.4/VC/bin/HostX64/x64/ml64.exe", - "buildid": "20191113044959", - "cc": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe -Xclang -std=gnu99", - "cxx": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe", - "host_alias": "x86_64-pc-mingw32", - "host_cpu": "x86_64", - "host_os": "mingw32", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "win64", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "48a708577712a2eb1b19aafcda25b2aa0e607629", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-mingw32", - "target_cpu": "x86_64", - "target_os": "mingw32", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/apS4cd3fTcSIv5R4zNFSbA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/apS4cd3fTcSIv5R4zNFSbA/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index c2b213bf..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/apS4cd3fTcSIv5R4zNFSbA/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": ".exe", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang-cl", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "z:/build/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "win", - "pgo": false, - "platform_guess": "win64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "windows", - "topsrcdir": "z:/build/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/atlDqsiJS9iEF2agw_qjCQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/atlDqsiJS9iEF2agw_qjCQ/artifacts/.get deleted file mode 100644 index 839f1d82..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/atlDqsiJS9iEF2agw_qjCQ/artifacts/.get +++ /dev/null @@ -1,226 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T14:26:39.371Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/atlDqsiJS9iEF2agw_qjCQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/atlDqsiJS9iEF2agw_qjCQ/artifacts/public/build/target.json deleted file mode 100644 index d4f5b670..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/atlDqsiJS9iEF2agw_qjCQ/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "buildid": "20191113142416", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "linux-x86_64-asan", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "a9395b9ab89526cb934f0d4aa1dc03670c3757c0", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/atlDqsiJS9iEF2agw_qjCQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/atlDqsiJS9iEF2agw_qjCQ/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 3162c70d..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/atlDqsiJS9iEF2agw_qjCQ/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": true, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": false, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": false, - "os": "linux", - "pgo": false, - "platform_guess": "linux64-asan", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": true, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/b0gCrxJOT6GrUbE1WlCvlw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/b0gCrxJOT6GrUbE1WlCvlw/artifacts/.get new file mode 100644 index 00000000..eb020f64 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/b0gCrxJOT6GrUbE1WlCvlw/artifacts/.get @@ -0,0 +1,238 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/geckoview-androidTest.apk", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/geckoview_example.apk", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727133716/geckoview-default-x86-80.0.20200727133716.aar", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727133716/geckoview-default-x86-80.0.20200727133716.aar.md5", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727133716/geckoview-default-x86-80.0.20200727133716.aar.sha1", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727133716/geckoview-default-x86-80.0.20200727133716-javadoc.jar", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727133716/geckoview-default-x86-80.0.20200727133716-javadoc.jar.md5", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727133716/geckoview-default-x86-80.0.20200727133716-javadoc.jar.sha1", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727133716/geckoview-default-x86-80.0.20200727133716.pom", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727133716/geckoview-default-x86-80.0.20200727133716.pom.md5", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727133716/geckoview-default-x86-80.0.20200727133716.pom.sha1", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727133716/geckoview-default-x86-80.0.20200727133716-sources.jar", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727133716/geckoview-default-x86-80.0.20200727133716-sources.jar.md5", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727133716/geckoview-default-x86-80.0.20200727133716-sources.jar.sha1", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "application/xml" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml.md5", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml.sha1", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T13:43:31.589Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/b0gCrxJOT6GrUbE1WlCvlw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/b0gCrxJOT6GrUbE1WlCvlw/artifacts/public/build/target.json new file mode 100644 index 00000000..f2f5df5a --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/b0gCrxJOT6GrUbE1WlCvlw/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=i686-linux-android", + "buildid": "20200727133716", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=i686-linux-android", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17 --target=i686-linux-android", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "fennec", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "android-i686", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "0e27829b5edf25746edcc684970c9e74f9604b4a", + "moz_update_channel": "default", + "target_alias": "i686-pc-linux-android", + "target_cpu": "i686", + "target_os": "linux-android", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/b0gCrxJOT6GrUbE1WlCvlw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/b0gCrxJOT6GrUbE1WlCvlw/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..f0e655c1 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/b0gCrxJOT6GrUbE1WlCvlw/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,37 @@ +{ + "android_min_sdk": "16", + "appname": "fennec", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 32, + "buildapp": "mobile/android", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": false, + "official": true, + "os": "android", + "pgo": false, + "platform_guess": "android-x86", + "processor": "x86", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": false, + "telemetry": false, + "tests_enabled": true, + "toolkit": "android", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": false +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/b37HPU6xS9mN3SXG6wKwlw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/b37HPU6xS9mN3SXG6wKwlw/artifacts/.get deleted file mode 100644 index b6d56d48..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/b37HPU6xS9mN3SXG6wKwlw/artifacts/.get +++ /dev/null @@ -1,238 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.dmg", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T09:57:04.949Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/b37HPU6xS9mN3SXG6wKwlw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/b37HPU6xS9mN3SXG6wKwlw/artifacts/public/build/target.json deleted file mode 100644 index bd5edb62..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/b37HPU6xS9mN3SXG6wKwlw/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", - "buildid": "20191113095525", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk --target=x86_64-apple-darwin", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "mac", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "2f19e7b646e0a52fa855b75c868f0a3f3a990ad3", - "moz_update_channel": "default", - "target_alias": "x86_64-apple-darwin", - "target_cpu": "x86_64", - "target_os": "darwin", - "target_vendor": "apple" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/b37HPU6xS9mN3SXG6wKwlw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/b37HPU6xS9mN3SXG6wKwlw/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index dfec7aed..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/b37HPU6xS9mN3SXG6wKwlw/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "mac", - "pgo": false, - "platform_guess": "macosx64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "cocoa", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/b4DETUtZSOyWNOwQb_Sp7A/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/b4DETUtZSOyWNOwQb_Sp7A/artifacts/.get deleted file mode 100644 index bd139bfe..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/b4DETUtZSOyWNOwQb_Sp7A/artifacts/.get +++ /dev/null @@ -1,226 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-01-14T00:18:51.020Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-01-14T00:18:51.020Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-01-14T00:18:51.020Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-01-14T00:18:51.020Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-01-14T00:18:51.020Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-01-14T00:18:51.020Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-01-14T00:18:51.020Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-01-14T00:18:51.020Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-01-14T00:18:51.020Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-01-14T00:18:51.020Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-01-14T00:18:51.020Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-01-14T00:18:51.020Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-01-14T00:18:51.020Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-01-14T00:18:51.020Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-01-14T00:18:51.020Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-01-14T00:18:51.020Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-01-14T00:18:51.020Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-01-14T00:18:51.020Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-01-14T00:18:51.020Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-01-14T00:18:51.020Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-01-14T00:18:51.020Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-01-14T00:18:51.020Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-01-14T00:18:51.020Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-01-14T00:18:51.020Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-01-14T00:18:51.020Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-01-14T00:18:51.020Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-01-14T00:18:51.020Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-01-14T00:18:51.020Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-01-14T00:18:51.020Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-01-14T00:18:51.020Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-01-14T00:18:51.020Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-01-14T00:18:51.020Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-01-14T00:18:51.020Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-01-14T00:18:51.020Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-01-14T00:18:51.020Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-01-14T00:18:51.020Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-01-14T00:18:51.020Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/b4DETUtZSOyWNOwQb_Sp7A/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/b4DETUtZSOyWNOwQb_Sp7A/artifacts/public/build/target.json deleted file mode 100644 index 4a7db100..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/b4DETUtZSOyWNOwQb_Sp7A/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "buildid": "20191217001554", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "73.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "73.0a1", - "moz_pkg_platform": "linux-x86_64-tsan", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "163a815e471650550a371531a2b382eff4f4c811", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/b4DETUtZSOyWNOwQb_Sp7A/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/b4DETUtZSOyWNOwQb_Sp7A/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 73d68511..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/b4DETUtZSOyWNOwQb_Sp7A/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": false, - "datareporting": true, - "debug": false, - "devedition": false, - "early_beta_or_earlier": true, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": false, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": true, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/b6H3FLlDTjW4qsbrEu-gZg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/b6H3FLlDTjW4qsbrEu-gZg/artifacts/.get new file mode 100644 index 00000000..945bca28 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/b6H3FLlDTjW4qsbrEu-gZg/artifacts/.get @@ -0,0 +1,250 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.normandy.json", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T01:47:56.927Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/b6H3FLlDTjW4qsbrEu-gZg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/b6H3FLlDTjW4qsbrEu-gZg/artifacts/public/build/target.json new file mode 100644 index 00000000..a8b6b541 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/b6H3FLlDTjW4qsbrEu-gZg/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "buildid": "20200727014148", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-x86_64-tsan", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "25d65b7e1b5bf562c68906b4eaaed54e558b3d1b", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/b6H3FLlDTjW4qsbrEu-gZg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/b6H3FLlDTjW4qsbrEu-gZg/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..ea907cb4 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/b6H3FLlDTjW4qsbrEu-gZg/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": false, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": false, + "os": "linux", + "pgo": false, + "platform_guess": "linux64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": true, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/b6NsZq6OQXWaiN9nM13FxA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/b6NsZq6OQXWaiN9nM13FxA/artifacts/.get deleted file mode 100644 index b270c95a..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/b6NsZq6OQXWaiN9nM13FxA/artifacts/.get +++ /dev/null @@ -1,316 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/geckoview-androidTest.apk", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/geckoview_example.apk", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113044959/geckoview-default-armeabi-v7a-72.0.20191113044959-javadoc.jar", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113044959/geckoview-default-armeabi-v7a-72.0.20191113044959-javadoc.jar.md5", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113044959/geckoview-default-armeabi-v7a-72.0.20191113044959-javadoc.jar.sha1", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113044959/geckoview-default-armeabi-v7a-72.0.20191113044959-sources.jar", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113044959/geckoview-default-armeabi-v7a-72.0.20191113044959-sources.jar.md5", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113044959/geckoview-default-armeabi-v7a-72.0.20191113044959-sources.jar.sha1", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113044959/geckoview-default-armeabi-v7a-72.0.20191113044959.aar", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113044959/geckoview-default-armeabi-v7a-72.0.20191113044959.aar.md5", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113044959/geckoview-default-armeabi-v7a-72.0.20191113044959.aar.sha1", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113044959/geckoview-default-armeabi-v7a-72.0.20191113044959.pom", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113044959/geckoview-default-armeabi-v7a-72.0.20191113044959.pom.md5", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/72.0.20191113044959/geckoview-default-armeabi-v7a-72.0.20191113044959.pom.sha1", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/xml" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml.md5", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-armeabi-v7a/maven-metadata.xml.sha1", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T04:51:49.507Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/b6NsZq6OQXWaiN9nM13FxA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/b6NsZq6OQXWaiN9nM13FxA/artifacts/public/build/target.json deleted file mode 100644 index 015b51c9..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/b6NsZq6OQXWaiN9nM13FxA/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=arm-linux-androideabi", - "buildid": "20191113044959", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=arm-linux-androideabi", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ --target=arm-linux-androideabi", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "fennec", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "android-arm", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "48a708577712a2eb1b19aafcda25b2aa0e607629", - "moz_update_channel": "default", - "target_alias": "arm-unknown-linux-androideabi", - "target_cpu": "arm", - "target_os": "linux-androideabi", - "target_vendor": "unknown" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/b6NsZq6OQXWaiN9nM13FxA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/b6NsZq6OQXWaiN9nM13FxA/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 7cf3aa44..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/b6NsZq6OQXWaiN9nM13FxA/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "allow_legacy_extensions": true, - "android_min_sdk": "16", - "appname": "fennec", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 32, - "buildapp": "mobile/android", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": false, - "official": true, - "os": "android", - "pgo": false, - "platform_guess": "android-arm", - "processor": "arm", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": false, - "telemetry": false, - "tests_enabled": true, - "toolkit": "android", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/b7P_ohf8Q3O2XPUy03yxkg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/b7P_ohf8Q3O2XPUy03yxkg/artifacts/.get deleted file mode 100644 index add8b8c2..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/b7P_ohf8Q3O2XPUy03yxkg/artifacts/.get +++ /dev/null @@ -1,238 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.dmg", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T14:26:39.362Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/b7P_ohf8Q3O2XPUy03yxkg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/b7P_ohf8Q3O2XPUy03yxkg/artifacts/public/build/target.json deleted file mode 100644 index bd4712f6..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/b7P_ohf8Q3O2XPUy03yxkg/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", - "buildid": "20191113142416", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk --target=x86_64-apple-darwin", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "mac", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "a9395b9ab89526cb934f0d4aa1dc03670c3757c0", - "moz_update_channel": "default", - "target_alias": "x86_64-apple-darwin", - "target_cpu": "x86_64", - "target_os": "darwin", - "target_vendor": "apple" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/b7P_ohf8Q3O2XPUy03yxkg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/b7P_ohf8Q3O2XPUy03yxkg/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 9a5fff6e..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/b7P_ohf8Q3O2XPUy03yxkg/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "mac", - "pgo": false, - "platform_guess": "macosx64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "cocoa", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/bAwy3FOSRU6FCJzuNlxVrg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/bAwy3FOSRU6FCJzuNlxVrg/artifacts/.get deleted file mode 100644 index 54423a1b..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/bAwy3FOSRU6FCJzuNlxVrg/artifacts/.get +++ /dev/null @@ -1,214 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T15:28:25.840Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T15:28:25.840Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T15:28:25.840Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T15:28:25.840Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2019-12-11T15:28:25.840Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2019-12-11T15:28:25.840Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T15:28:25.840Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T15:28:25.840Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T15:28:25.840Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T15:28:25.840Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T15:28:25.840Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T15:28:25.840Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T15:28:25.840Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2019-12-11T15:28:25.840Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T15:28:25.840Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T15:28:25.840Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T15:28:25.840Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T15:28:25.840Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T15:28:25.840Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T15:28:25.840Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T15:28:25.840Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2019-12-11T15:28:25.840Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T15:28:25.840Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T15:28:25.840Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T15:28:25.840Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T15:28:25.840Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T15:28:25.840Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T15:28:25.840Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2019-12-11T15:28:25.840Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T15:28:25.840Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T15:28:25.840Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T15:28:25.840Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T15:28:25.840Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T15:28:25.840Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T15:28:25.840Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/bAwy3FOSRU6FCJzuNlxVrg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/bAwy3FOSRU6FCJzuNlxVrg/artifacts/public/build/target.json deleted file mode 100644 index 63b1a693..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/bAwy3FOSRU6FCJzuNlxVrg/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "", - "buildid": "20191113152610", - "cc": "", - "cxx": "", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "linux-i686", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "fc1f062533c41f097e9dd166d7632105b146b899", - "moz_update_channel": "default", - "target_alias": "i686-pc-linux-gnu", - "target_cpu": "i686", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/bAwy3FOSRU6FCJzuNlxVrg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/bAwy3FOSRU6FCJzuNlxVrg/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 107a147f..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/bAwy3FOSRU6FCJzuNlxVrg/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": true, - "asan": false, - "bin_suffix": "", - "bits": 32, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": null, - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "linux", - "pgo": false, - "platform_guess": "linux", - "processor": "x86", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/bCXk7_ALRbqypcRnO17L6w/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/bCXk7_ALRbqypcRnO17L6w/artifacts/.get deleted file mode 100644 index cc1f9e17..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/bCXk7_ALRbqypcRnO17L6w/artifacts/.get +++ /dev/null @@ -1,316 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/geckoview-androidTest.apk", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/geckoview_example.apk", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113000048/geckoview-default-x86-72.0.20191113000048-javadoc.jar", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113000048/geckoview-default-x86-72.0.20191113000048-javadoc.jar.md5", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113000048/geckoview-default-x86-72.0.20191113000048-javadoc.jar.sha1", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113000048/geckoview-default-x86-72.0.20191113000048-sources.jar", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113000048/geckoview-default-x86-72.0.20191113000048-sources.jar.md5", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113000048/geckoview-default-x86-72.0.20191113000048-sources.jar.sha1", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113000048/geckoview-default-x86-72.0.20191113000048.aar", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113000048/geckoview-default-x86-72.0.20191113000048.aar.md5", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113000048/geckoview-default-x86-72.0.20191113000048.aar.sha1", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113000048/geckoview-default-x86-72.0.20191113000048.pom", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113000048/geckoview-default-x86-72.0.20191113000048.pom.md5", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/72.0.20191113000048/geckoview-default-x86-72.0.20191113000048.pom.sha1", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/xml" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml.md5", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml.sha1", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T00:03:47.119Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/bCXk7_ALRbqypcRnO17L6w/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/bCXk7_ALRbqypcRnO17L6w/artifacts/public/build/target.json deleted file mode 100644 index 6d9a6ef3..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/bCXk7_ALRbqypcRnO17L6w/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=i686-linux-android", - "buildid": "20191113000048", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=i686-linux-android", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ --target=i686-linux-android", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "fennec", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "android-i686", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "77b18bc38fcfb26cbd1df38bc67ec840399a87e0", - "moz_update_channel": "default", - "target_alias": "i686-pc-linux-android", - "target_cpu": "i686", - "target_os": "linux-android", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/bCXk7_ALRbqypcRnO17L6w/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/bCXk7_ALRbqypcRnO17L6w/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index cb8f2cdc..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/bCXk7_ALRbqypcRnO17L6w/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "allow_legacy_extensions": true, - "android_min_sdk": "16", - "appname": "fennec", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 32, - "buildapp": "mobile/android", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": false, - "official": true, - "os": "android", - "pgo": false, - "platform_guess": "android-x86", - "processor": "x86", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": false, - "telemetry": false, - "tests_enabled": true, - "toolkit": "android", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/b_mIGMiOS6y5KsyUgJP4QQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/b_mIGMiOS6y5KsyUgJP4QQ/artifacts/.get deleted file mode 100644 index 2809becd..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/b_mIGMiOS6y5KsyUgJP4QQ/artifacts/.get +++ /dev/null @@ -1,232 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T11:59:57.684Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/b_mIGMiOS6y5KsyUgJP4QQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/b_mIGMiOS6y5KsyUgJP4QQ/artifacts/public/build/target.json deleted file mode 100644 index abd3c6b9..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/b_mIGMiOS6y5KsyUgJP4QQ/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/gcc/bin/gcc -std=gnu99", - "buildid": "20191113115444", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/gcc/bin/gcc -std=gnu99", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/gcc/bin/g++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "linux-x86_64-fuzzing", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "1669fa43c9edb5584cda1c8b2250a5beb3bc0c71", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/b_mIGMiOS6y5KsyUgJP4QQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/b_mIGMiOS6y5KsyUgJP4QQ/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index dc3a3c2e..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/b_mIGMiOS6y5KsyUgJP4QQ/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "cc_type": "gcc", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": false, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/bheUIrI2S521jjVl4E07dA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/bheUIrI2S521jjVl4E07dA/artifacts/.get new file mode 100644 index 00000000..9e1ddd18 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/bheUIrI2S521jjVl4E07dA/artifacts/.get @@ -0,0 +1,256 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/install/sea/target.installer.exe", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/setup.exe", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.zip", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T08:59:09.020Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/bheUIrI2S521jjVl4E07dA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/bheUIrI2S521jjVl4E07dA/artifacts/public/build/target.json new file mode 100644 index 00000000..a9913b7b --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/bheUIrI2S521jjVl4E07dA/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/checkouts/gecko/vs2017_15.9.6/VC/bin/Hostx64/arm64/armasm64.exe", + "buildid": "20200727085208", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang-cl -Xclang -std=gnu99 --target=aarch64-windows-msvc", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang-cl -Xclang -std=c++17 --target=aarch64-windows-msvc", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "win64-aarch64", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "6e604e8ff32ade90bdee21b40366c365039ec7f2", + "moz_update_channel": "default", + "target_alias": "aarch64-windows-mingw32", + "target_cpu": "aarch64", + "target_os": "mingw32", + "target_vendor": "windows" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/bheUIrI2S521jjVl4E07dA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/bheUIrI2S521jjVl4E07dA/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..1c5c0593 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/bheUIrI2S521jjVl4E07dA/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": ".exe", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang-cl", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "win", + "pgo": false, + "platform_guess": "win64", + "processor": "aarch64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "windows", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/blZICTjPSYSzSpQnY2b9fA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/blZICTjPSYSzSpQnY2b9fA/artifacts/.get new file mode 100644 index 00000000..9de47102 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/blZICTjPSYSzSpQnY2b9fA/artifacts/.get @@ -0,0 +1,262 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.codesign-entitlements.zip", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.dmg", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T00:53:22.420Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/blZICTjPSYSzSpQnY2b9fA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/blZICTjPSYSzSpQnY2b9fA/artifacts/public/build/target.json new file mode 100644 index 00000000..59a6feeb --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/blZICTjPSYSzSpQnY2b9fA/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/checkouts/gecko/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", + "buildid": "20200727004544", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/checkouts/gecko/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -isysroot /builds/worker/checkouts/gecko/MacOSX10.11.sdk -std=gnu++17 --target=x86_64-apple-darwin", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "mac", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "b6fd90e8115ad0ceeb72c2172bdcf40252bb0be1", + "moz_update_channel": "default", + "target_alias": "x86_64-apple-darwin", + "target_cpu": "x86_64", + "target_os": "darwin", + "target_vendor": "apple" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/blZICTjPSYSzSpQnY2b9fA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/blZICTjPSYSzSpQnY2b9fA/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..20e7edce --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/blZICTjPSYSzSpQnY2b9fA/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "debug", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": true, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "mac", + "pgo": false, + "platform_guess": "macosx64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "cocoa", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/c2WGsOt-QXyFmcaj9VnnbA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/c2WGsOt-QXyFmcaj9VnnbA/artifacts/.get deleted file mode 100644 index 7fc12592..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/c2WGsOt-QXyFmcaj9VnnbA/artifacts/.get +++ /dev/null @@ -1,322 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/geckoview-androidTest.apk", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/geckoview_example.apk", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/vnd.android.package-archive" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113044959/geckoview-default-x86_64-72.0.20191113044959-javadoc.jar", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113044959/geckoview-default-x86_64-72.0.20191113044959-javadoc.jar.md5", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113044959/geckoview-default-x86_64-72.0.20191113044959-javadoc.jar.sha1", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113044959/geckoview-default-x86_64-72.0.20191113044959-sources.jar", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/java-archive" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113044959/geckoview-default-x86_64-72.0.20191113044959-sources.jar.md5", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113044959/geckoview-default-x86_64-72.0.20191113044959-sources.jar.sha1", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113044959/geckoview-default-x86_64-72.0.20191113044959.aar", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113044959/geckoview-default-x86_64-72.0.20191113044959.aar.md5", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113044959/geckoview-default-x86_64-72.0.20191113044959.aar.sha1", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113044959/geckoview-default-x86_64-72.0.20191113044959.pom", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113044959/geckoview-default-x86_64-72.0.20191113044959.pom.md5", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/72.0.20191113044959/geckoview-default-x86_64-72.0.20191113044959.pom.sha1", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/maven-metadata.xml", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/xml" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/maven-metadata.xml.md5", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/maven-metadata.xml.sha1", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T04:51:48.634Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/c2WGsOt-QXyFmcaj9VnnbA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/c2WGsOt-QXyFmcaj9VnnbA/artifacts/public/build/target.json deleted file mode 100644 index 630b0dde..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/c2WGsOt-QXyFmcaj9VnnbA/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=x86_64-linux-android", - "buildid": "20191113044959", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=x86_64-linux-android", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ --target=x86_64-linux-android", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "fennec", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "android-x86_64", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "48a708577712a2eb1b19aafcda25b2aa0e607629", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-android", - "target_cpu": "x86_64", - "target_os": "linux-android", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/c2WGsOt-QXyFmcaj9VnnbA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/c2WGsOt-QXyFmcaj9VnnbA/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 29a47812..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/c2WGsOt-QXyFmcaj9VnnbA/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "allow_legacy_extensions": true, - "android_min_sdk": "21", - "appname": "fennec", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "mobile/android", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": false, - "official": true, - "os": "android", - "pgo": false, - "platform_guess": "android-arm", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": false, - "telemetry": false, - "tests_enabled": true, - "toolkit": "android", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/c67_iKakT1agkfRvdzlH3w/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/c67_iKakT1agkfRvdzlH3w/artifacts/.get new file mode 100644 index 00000000..d91dd0ca --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/c67_iKakT1agkfRvdzlH3w/artifacts/.get @@ -0,0 +1,160 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T10:14:03.147Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T10:14:03.147Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T10:14:03.147Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T10:14:03.147Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2020-08-24T10:14:03.147Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2020-08-24T10:14:03.147Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T10:14:03.147Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T10:14:03.147Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T10:14:03.147Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2020-08-24T10:14:03.147Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2020-08-24T10:14:03.147Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-24T10:14:03.147Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T10:14:03.147Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T10:14:03.147Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T10:14:03.147Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2020-08-24T10:14:03.147Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T10:14:03.147Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2020-08-24T10:14:03.147Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T10:14:03.147Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2020-08-24T10:14:03.147Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T10:14:03.147Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T10:14:03.147Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T10:14:03.147Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T10:14:03.147Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T10:14:03.147Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T10:14:03.147Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/c67_iKakT1agkfRvdzlH3w/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/c67_iKakT1agkfRvdzlH3w/artifacts/public/build/target.json new file mode 100644 index 00000000..8ffc8f63 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/c67_iKakT1agkfRvdzlH3w/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 -m32", + "buildid": "20200727100842", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 -m32", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17 -m32", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.*", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0", + "moz_pkg_platform": "linux-i686", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "cea19434bc6fde80e3d7cddf31fd598ff465ef16", + "moz_update_channel": "default", + "target_alias": "i686-pc-linux-gnu", + "target_cpu": "i686", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/c67_iKakT1agkfRvdzlH3w/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/c67_iKakT1agkfRvdzlH3w/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..0173e8b6 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/c67_iKakT1agkfRvdzlH3w/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 32, + "buildapp": "browser", + "buildtype_guess": "debug", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": true, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": false, + "normandy": true, + "official": true, + "os": "linux", + "pgo": false, + "platform_guess": "linux", + "processor": "x86", + "release_or_beta": true, + "require_signing": true, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/cdketYQMQYC8pa8KU3T18Q/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/cdketYQMQYC8pa8KU3T18Q/artifacts/.get deleted file mode 100644 index b956f744..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/cdketYQMQYC8pa8KU3T18Q/artifacts/.get +++ /dev/null @@ -1,226 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-12-16T04:16:24.851Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-12-16T04:16:24.851Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-12-16T04:16:24.851Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-12-16T04:16:24.851Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-12-16T04:16:24.851Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-12-16T04:16:24.851Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-12-16T04:16:24.851Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-12-16T04:16:24.851Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-12-16T04:16:24.851Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-12-16T04:16:24.851Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-12-16T04:16:24.851Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-12-16T04:16:24.851Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-12-16T04:16:24.851Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-12-16T04:16:24.851Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-12-16T04:16:24.851Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-12-16T04:16:24.851Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-12-16T04:16:24.851Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-12-16T04:16:24.851Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-12-16T04:16:24.851Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-12-16T04:16:24.851Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-12-16T04:16:24.851Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-12-16T04:16:24.851Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-12-16T04:16:24.851Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-12-16T04:16:24.851Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-12-16T04:16:24.851Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-12-16T04:16:24.851Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-12-16T04:16:24.851Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-12-16T04:16:24.851Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-12-16T04:16:24.851Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-12-16T04:16:24.851Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-12-16T04:16:24.851Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-12-16T04:16:24.851Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-12-16T04:16:24.851Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-12-16T04:16:24.851Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-12-16T04:16:24.851Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-12-16T04:16:24.851Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-12-16T04:16:24.851Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/cdketYQMQYC8pa8KU3T18Q/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/cdketYQMQYC8pa8KU3T18Q/artifacts/public/build/target.json deleted file mode 100644 index 06b5457d..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/cdketYQMQYC8pa8KU3T18Q/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "buildid": "20191217041353", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "73.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "73.0a1", - "moz_pkg_platform": "linux-x86_64-tsan", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "7bebdc108aa3b2fab6aa5c6d74b740649bb6b749", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/cdketYQMQYC8pa8KU3T18Q/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/cdketYQMQYC8pa8KU3T18Q/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 73d68511..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/cdketYQMQYC8pa8KU3T18Q/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": false, - "datareporting": true, - "debug": false, - "devedition": false, - "early_beta_or_earlier": true, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": false, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": true, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/dJG9Q-QQTnWD9JUhxCa73w/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/dJG9Q-QQTnWD9JUhxCa73w/artifacts/.get deleted file mode 100644 index 9024eeeb..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/dJG9Q-QQTnWD9JUhxCa73w/artifacts/.get +++ /dev/null @@ -1,238 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T09:57:05.393Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/dJG9Q-QQTnWD9JUhxCa73w/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/dJG9Q-QQTnWD9JUhxCa73w/artifacts/public/build/target.json deleted file mode 100644 index 94bf7714..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/dJG9Q-QQTnWD9JUhxCa73w/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "buildid": "20191113095525", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "linux-x86_64", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "2f19e7b646e0a52fa855b75c868f0a3f3a990ad3", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/dJG9Q-QQTnWD9JUhxCa73w/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/dJG9Q-QQTnWD9JUhxCa73w/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 51718130..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/dJG9Q-QQTnWD9JUhxCa73w/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/dKCEw0LCSI2wwiQPpg2bGA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/dKCEw0LCSI2wwiQPpg2bGA/artifacts/.get deleted file mode 100644 index 02a1d240..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/dKCEw0LCSI2wwiQPpg2bGA/artifacts/.get +++ /dev/null @@ -1,208 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-11T22:30:46.488Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-11T22:30:46.488Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-11T22:30:46.488Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-11T22:30:46.488Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-11T22:30:46.488Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-11T22:30:46.488Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-11T22:30:46.488Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-11T22:30:46.488Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-11T22:30:46.488Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-11T22:30:46.488Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-11T22:30:46.488Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-11T22:30:46.488Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-11T22:30:46.488Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-11T22:30:46.488Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-11T22:30:46.488Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-11T22:30:46.488Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-11T22:30:46.488Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-11T22:30:46.488Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-11T22:30:46.488Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-11-11T22:30:46.488Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-11T22:30:46.488Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-11T22:30:46.488Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-11T22:30:46.488Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-11T22:30:46.488Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-11T22:30:46.488Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-11T22:30:46.488Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-11T22:30:46.488Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-11-11T22:30:46.488Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-11T22:30:46.488Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-11T22:30:46.488Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-11T22:30:46.488Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-11T22:30:46.488Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-11T22:30:46.488Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-11T22:30:46.488Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/dKCEw0LCSI2wwiQPpg2bGA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/dKCEw0LCSI2wwiQPpg2bGA/artifacts/public/build/target.json deleted file mode 100644 index 5e0753f4..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/dKCEw0LCSI2wwiQPpg2bGA/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/workspace/build/src/clang/bin/clang -std=gnu99", - "buildid": "20191112222920", - "cc": "/builds/worker/workspace/build/src/clang/bin/clang -std=gnu99", - "cxx": "/builds/worker/workspace/build/src/clang/bin/clang++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "68.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "68.2.1", - "moz_pkg_platform": "linux-x86_64-asan", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr68", - "moz_source_stamp": "939a3aec03d304a0a3e3b003e26965c6e95ec211", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/dKCEw0LCSI2wwiQPpg2bGA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/dKCEw0LCSI2wwiQPpg2bGA/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 0e729615..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/dKCEw0LCSI2wwiQPpg2bGA/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": true, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": false, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": false, - "os": "linux", - "pgo": false, - "platform_guess": "linux64-asan", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk3", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": true, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/dOSP7dRtSNS9_63k1zBnnA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/dOSP7dRtSNS9_63k1zBnnA/artifacts/.get deleted file mode 100644 index 1c6343c0..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/dOSP7dRtSNS9_63k1zBnnA/artifacts/.get +++ /dev/null @@ -1,250 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "text/html; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar.exe", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff.exe", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/install/sea/target.installer.exe", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/setup.exe", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.zip", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T13:29:19.955Z", - "contentType": "application/octet-stream" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/dOSP7dRtSNS9_63k1zBnnA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/dOSP7dRtSNS9_63k1zBnnA/artifacts/public/build/target.json deleted file mode 100644 index 6117b0fa..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/dOSP7dRtSNS9_63k1zBnnA/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "z:/build/build/src/vs2017_15.9.6/VC/bin/HostX64/arm64/armasm64.exe", - "buildid": "20191113132711", - "cc": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe -Xclang -std=gnu99 --target=aarch64-windows-msvc", - "cxx": "z:/build/fetches/sccache/sccache.exe z:/build/fetches/clang/bin/clang-cl.exe --target=aarch64-windows-msvc", - "host_alias": "x86_64-pc-mingw32", - "host_cpu": "x86_64", - "host_os": "mingw32", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "win64", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "16bedc0978b033b62b1a2378c838ab8565233d58", - "moz_update_channel": "default", - "target_alias": "aarch64-windows-mingw32", - "target_cpu": "aarch64", - "target_os": "mingw32", - "target_vendor": "windows" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/dOSP7dRtSNS9_63k1zBnnA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/dOSP7dRtSNS9_63k1zBnnA/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index ef64d76d..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/dOSP7dRtSNS9_63k1zBnnA/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": ".exe", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "cc_type": "clang-cl", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "z:/build/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "win", - "pgo": false, - "platform_guess": "win64", - "processor": "aarch64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "windows", - "topsrcdir": "z:/build/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/doI-yWRFR9eMidgEv73LKA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/doI-yWRFR9eMidgEv73LKA/artifacts/.get new file mode 100644 index 00000000..7f65acc8 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/doI-yWRFR9eMidgEv73LKA/artifacts/.get @@ -0,0 +1,250 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.normandy.json", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T09:55:01.553Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/doI-yWRFR9eMidgEv73LKA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/doI-yWRFR9eMidgEv73LKA/artifacts/public/build/target.json new file mode 100644 index 00000000..78e23d06 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/doI-yWRFR9eMidgEv73LKA/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "buildid": "20200727095125", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-x86_64-asan", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "798bdad605b985a71cd204a56bb816dea503d432", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/doI-yWRFR9eMidgEv73LKA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/doI-yWRFR9eMidgEv73LKA/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..e84f4330 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/doI-yWRFR9eMidgEv73LKA/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": true, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": false, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": false, + "os": "linux", + "pgo": false, + "platform_guess": "linux64-asan", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": true, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/driCvXiMTZCOdGmC8ufyag/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/driCvXiMTZCOdGmC8ufyag/artifacts/.get new file mode 100644 index 00000000..276ce25c --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/driCvXiMTZCOdGmC8ufyag/artifacts/.get @@ -0,0 +1,160 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T03:36:23.624Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T03:36:23.624Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T03:36:23.624Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T03:36:23.624Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2021-07-27T03:36:23.624Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2021-07-27T03:36:23.624Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T03:36:23.624Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T03:36:23.624Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T03:36:23.624Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2021-07-27T03:36:23.624Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T03:36:23.624Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T03:36:23.624Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T03:36:23.624Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T03:36:23.624Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T03:36:23.624Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T03:36:23.624Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T03:36:23.624Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2021-07-27T03:36:23.624Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T03:36:23.624Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2021-07-27T03:36:23.624Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T03:36:23.624Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T03:36:23.624Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T03:36:23.624Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T03:36:23.624Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T03:36:23.624Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T03:36:23.624Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/driCvXiMTZCOdGmC8ufyag/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/driCvXiMTZCOdGmC8ufyag/artifacts/public/build/target.json new file mode 100644 index 00000000..f26688c7 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/driCvXiMTZCOdGmC8ufyag/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 -m32", + "buildid": "20200727033000", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 -m32", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17 -m32", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-i686", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "56082fc4acfacba40993e47ef8302993c59e264e", + "moz_update_channel": "default", + "target_alias": "i686-pc-linux-gnu", + "target_cpu": "i686", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/driCvXiMTZCOdGmC8ufyag/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/driCvXiMTZCOdGmC8ufyag/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..a8bc1fbc --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/driCvXiMTZCOdGmC8ufyag/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 32, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "linux", + "pgo": false, + "platform_guess": "linux", + "processor": "x86", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/dvuem12OQT6HASgIC2bm6A/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/dvuem12OQT6HASgIC2bm6A/artifacts/.get new file mode 100644 index 00000000..d9ec638d --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/dvuem12OQT6HASgIC2bm6A/artifacts/.get @@ -0,0 +1,334 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/geckoview-androidTest.apk", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/geckoview_example.apk", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727023128/geckoview-default-x86_64-80.0.20200727023128.aar", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727023128/geckoview-default-x86_64-80.0.20200727023128.aar.md5", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727023128/geckoview-default-x86_64-80.0.20200727023128.aar.sha1", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727023128/geckoview-default-x86_64-80.0.20200727023128-javadoc.jar", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727023128/geckoview-default-x86_64-80.0.20200727023128-javadoc.jar.md5", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727023128/geckoview-default-x86_64-80.0.20200727023128-javadoc.jar.sha1", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727023128/geckoview-default-x86_64-80.0.20200727023128.pom", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727023128/geckoview-default-x86_64-80.0.20200727023128.pom.md5", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727023128/geckoview-default-x86_64-80.0.20200727023128.pom.sha1", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727023128/geckoview-default-x86_64-80.0.20200727023128-sources.jar", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727023128/geckoview-default-x86_64-80.0.20200727023128-sources.jar.md5", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727023128/geckoview-default-x86_64-80.0.20200727023128-sources.jar.sha1", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/maven-metadata.xml", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/xml" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/maven-metadata.xml.md5", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/maven-metadata.xml.sha1", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T02:36:00.579Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/dvuem12OQT6HASgIC2bm6A/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/dvuem12OQT6HASgIC2bm6A/artifacts/public/build/target.json new file mode 100644 index 00000000..fa259ec3 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/dvuem12OQT6HASgIC2bm6A/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=x86_64-linux-android", + "buildid": "20200727023128", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=x86_64-linux-android", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17 --target=x86_64-linux-android", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "fennec", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "android-x86_64", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "fb75f4882a8c02975bd0baeb767f56de15679e20", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-android", + "target_cpu": "x86_64", + "target_os": "linux-android", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/dvuem12OQT6HASgIC2bm6A/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/dvuem12OQT6HASgIC2bm6A/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..a9f35ccd --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/dvuem12OQT6HASgIC2bm6A/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,37 @@ +{ + "android_min_sdk": "21", + "appname": "fennec", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "mobile/android", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": false, + "official": true, + "os": "android", + "pgo": false, + "platform_guess": "android-x86_64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": false, + "telemetry": false, + "tests_enabled": true, + "toolkit": "android", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": false +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/e3KJmtAYQVmda93ZtvYGqA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/e3KJmtAYQVmda93ZtvYGqA/artifacts/.get new file mode 100644 index 00000000..543f8bf8 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/e3KJmtAYQVmda93ZtvYGqA/artifacts/.get @@ -0,0 +1,238 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/geckoview-androidTest.apk", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/geckoview_example.apk", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727033000/geckoview-default-x86-80.0.20200727033000.aar", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727033000/geckoview-default-x86-80.0.20200727033000.aar.md5", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727033000/geckoview-default-x86-80.0.20200727033000.aar.sha1", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727033000/geckoview-default-x86-80.0.20200727033000-javadoc.jar", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727033000/geckoview-default-x86-80.0.20200727033000-javadoc.jar.md5", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727033000/geckoview-default-x86-80.0.20200727033000-javadoc.jar.sha1", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727033000/geckoview-default-x86-80.0.20200727033000.pom", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727033000/geckoview-default-x86-80.0.20200727033000.pom.md5", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727033000/geckoview-default-x86-80.0.20200727033000.pom.sha1", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727033000/geckoview-default-x86-80.0.20200727033000-sources.jar", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727033000/geckoview-default-x86-80.0.20200727033000-sources.jar.md5", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/80.0.20200727033000/geckoview-default-x86-80.0.20200727033000-sources.jar.sha1", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "application/xml" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml.md5", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86/maven-metadata.xml.sha1", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T03:36:24.030Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/e3KJmtAYQVmda93ZtvYGqA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/e3KJmtAYQVmda93ZtvYGqA/artifacts/public/build/target.json new file mode 100644 index 00000000..76433a62 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/e3KJmtAYQVmda93ZtvYGqA/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=i686-linux-android", + "buildid": "20200727033000", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=i686-linux-android", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17 --target=i686-linux-android", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "fennec", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "android-i686", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "56082fc4acfacba40993e47ef8302993c59e264e", + "moz_update_channel": "default", + "target_alias": "i686-pc-linux-android", + "target_cpu": "i686", + "target_os": "linux-android", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/e3KJmtAYQVmda93ZtvYGqA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/e3KJmtAYQVmda93ZtvYGqA/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..f0e655c1 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/e3KJmtAYQVmda93ZtvYGqA/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,37 @@ +{ + "android_min_sdk": "16", + "appname": "fennec", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 32, + "buildapp": "mobile/android", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": false, + "official": true, + "os": "android", + "pgo": false, + "platform_guess": "android-x86", + "processor": "x86", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": false, + "telemetry": false, + "tests_enabled": true, + "toolkit": "android", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": false +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/e86rdK-6Q8aS4_OPJ1gf3Q/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/e86rdK-6Q8aS4_OPJ1gf3Q/artifacts/.get new file mode 100644 index 00000000..73f4e619 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/e86rdK-6Q8aS4_OPJ1gf3Q/artifacts/.get @@ -0,0 +1,274 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/chrome-map.json", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.code-coverage-gcno.zip", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.normandy.json", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/code-coverage-grcov.zip", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T09:55:01.711Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/e86rdK-6Q8aS4_OPJ1gf3Q/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/e86rdK-6Q8aS4_OPJ1gf3Q/artifacts/public/build/target.json new file mode 100644 index 00000000..c5024fd8 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/e86rdK-6Q8aS4_OPJ1gf3Q/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/gcc/bin/gcc -std=gnu99", + "buildid": "20200727095125", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/gcc/bin/gcc -std=gnu99", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/gcc/bin/g++ -std=gnu++17", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-x86_64", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "798bdad605b985a71cd204a56bb816dea503d432", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-gnu", + "target_cpu": "x86_64", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/e86rdK-6Q8aS4_OPJ1gf3Q/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/e86rdK-6Q8aS4_OPJ1gf3Q/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..5ab7bd5c --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/e86rdK-6Q8aS4_OPJ1gf3Q/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "gcc", + "ccov": true, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "linux", + "pgo": false, + "platform_guess": "linux64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/eTgkfssnQs2ULrteKOIqpA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/eTgkfssnQs2ULrteKOIqpA/artifacts/.get deleted file mode 100644 index 7296a9b2..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/eTgkfssnQs2ULrteKOIqpA/artifacts/.get +++ /dev/null @@ -1,196 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-11T22:30:47.217Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-11T22:30:47.217Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-11T22:30:47.217Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-11T22:30:47.217Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-11T22:30:47.217Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-11T22:30:47.217Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-11T22:30:47.217Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-11T22:30:47.217Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-11T22:30:47.217Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-11-11T22:30:47.217Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-11T22:30:47.217Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-11T22:30:47.217Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-11T22:30:47.217Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-11T22:30:47.217Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-11T22:30:47.217Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-11T22:30:47.217Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-11T22:30:47.217Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-11T22:30:47.217Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-11T22:30:47.217Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-11T22:30:47.217Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-11-11T22:30:47.217Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-11T22:30:47.217Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-11T22:30:47.217Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-11T22:30:47.217Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-11T22:30:47.217Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-11T22:30:47.217Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-11T22:30:47.217Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-11-11T22:30:47.217Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-11-11T22:30:47.217Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-11T22:30:47.217Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-11T22:30:47.217Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-11T22:30:47.217Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/eTgkfssnQs2ULrteKOIqpA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/eTgkfssnQs2ULrteKOIqpA/artifacts/public/build/target.json deleted file mode 100644 index 0393824d..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/eTgkfssnQs2ULrteKOIqpA/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/workspace/build/src/clang/bin/clang -std=gnu99", - "buildid": "20191112222920", - "cc": "/builds/worker/workspace/build/src/clang/bin/clang -std=gnu99", - "cxx": "/builds/worker/workspace/build/src/clang/bin/clang++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "68.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "68.2.1", - "moz_pkg_platform": "linux-x86_64", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr68", - "moz_source_stamp": "939a3aec03d304a0a3e3b003e26965c6e95ec211", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/eTgkfssnQs2ULrteKOIqpA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/eTgkfssnQs2ULrteKOIqpA/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 8910c919..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/eTgkfssnQs2ULrteKOIqpA/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": "clang", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": true, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk3", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/eYMhAWGmSpKLp4UmN7eVyg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/eYMhAWGmSpKLp4UmN7eVyg/artifacts/.get deleted file mode 100644 index a1e08e33..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/eYMhAWGmSpKLp4UmN7eVyg/artifacts/.get +++ /dev/null @@ -1,244 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.zip", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.zip", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.zip", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.dmg", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.zip", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.zip", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.zip", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.stylo-bindings.zip", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.zip", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.zip", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/logs/log_critical.log", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_debug.log", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_error.log", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_fatal.log", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_info.log", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_raw.log", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_warning.log", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "text/plain" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/eYMhAWGmSpKLp4UmN7eVyg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/eYMhAWGmSpKLp4UmN7eVyg/artifacts/public/build/target.json deleted file mode 100644 index e27509e7..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/eYMhAWGmSpKLp4UmN7eVyg/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "$(CC)", - "buildid": "20191014131614", - "cc": "/builds/worker/workspace/build/src/clang/bin/clang -target x86_64-apple-darwin11 -B /builds/worker/workspace/build/src/cctools/bin -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99", - "cxx": "/builds/worker/workspace/build/src/clang/bin/clang++ -target x86_64-apple-darwin11 -B /builds/worker/workspace/build/src/cctools/bin -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu++14", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "60.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "60.9.1", - "moz_pkg_platform": "mac", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr60", - "moz_source_stamp": "e67641c2e4ccd1fe2d4cd522b6575adec838697a", - "moz_update_channel": "default", - "target_alias": "x86_64-apple-darwin", - "target_cpu": "x86_64", - "target_os": "darwin", - "target_vendor": "apple" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/eYMhAWGmSpKLp4UmN7eVyg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/eYMhAWGmSpKLp4UmN7eVyg/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 70057b7d..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/eYMhAWGmSpKLp4UmN7eVyg/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "addon_signing": true, - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": true, - "os": "mac", - "pgo": false, - "platform_guess": "macosx64", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "cocoa", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/efmtwtH-Q-m5vmk1yjEf6w/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/efmtwtH-Q-m5vmk1yjEf6w/artifacts/.get new file mode 100644 index 00000000..7c15084e --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/efmtwtH-Q-m5vmk1yjEf6w/artifacts/.get @@ -0,0 +1,262 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.codesign-entitlements.zip", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.dmg", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.gtest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2021-07-27T03:36:23.287Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/efmtwtH-Q-m5vmk1yjEf6w/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/efmtwtH-Q-m5vmk1yjEf6w/artifacts/public/build/target.json new file mode 100644 index 00000000..d2e427a5 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/efmtwtH-Q-m5vmk1yjEf6w/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/checkouts/gecko/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", + "buildid": "20200727033000", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -isysroot /builds/worker/checkouts/gecko/MacOSX10.11.sdk -std=gnu99 --target=x86_64-apple-darwin", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -isysroot /builds/worker/checkouts/gecko/MacOSX10.11.sdk -std=gnu++17 --target=x86_64-apple-darwin", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "mac", + "moz_source_repo": "https://hg.mozilla.org/mozilla-central", + "moz_source_stamp": "56082fc4acfacba40993e47ef8302993c59e264e", + "moz_update_channel": "default", + "target_alias": "x86_64-apple-darwin", + "target_cpu": "x86_64", + "target_os": "darwin", + "target_vendor": "apple" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/efmtwtH-Q-m5vmk1yjEf6w/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/efmtwtH-Q-m5vmk1yjEf6w/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..20e7edce --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/efmtwtH-Q-m5vmk1yjEf6w/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "browser", + "buildtype_guess": "debug", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": true, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "mac", + "pgo": false, + "platform_guess": "macosx64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "cocoa", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/evGCcA2DRiaGWc08NmtXhA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/evGCcA2DRiaGWc08NmtXhA/artifacts/.get new file mode 100644 index 00000000..f1628164 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/evGCcA2DRiaGWc08NmtXhA/artifacts/.get @@ -0,0 +1,328 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/geckoview-androidTest.apk", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/geckoview_example.apk", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727133716/geckoview-default-arm64-v8a-80.0.20200727133716.aar", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727133716/geckoview-default-arm64-v8a-80.0.20200727133716.aar.md5", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727133716/geckoview-default-arm64-v8a-80.0.20200727133716.aar.sha1", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727133716/geckoview-default-arm64-v8a-80.0.20200727133716-javadoc.jar", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727133716/geckoview-default-arm64-v8a-80.0.20200727133716-javadoc.jar.md5", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727133716/geckoview-default-arm64-v8a-80.0.20200727133716-javadoc.jar.sha1", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727133716/geckoview-default-arm64-v8a-80.0.20200727133716.pom", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727133716/geckoview-default-arm64-v8a-80.0.20200727133716.pom.md5", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727133716/geckoview-default-arm64-v8a-80.0.20200727133716.pom.sha1", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727133716/geckoview-default-arm64-v8a-80.0.20200727133716-sources.jar", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727133716/geckoview-default-arm64-v8a-80.0.20200727133716-sources.jar.md5", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/80.0.20200727133716/geckoview-default-arm64-v8a-80.0.20200727133716-sources.jar.sha1", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/maven-metadata.xml", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/xml" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/maven-metadata.xml.md5", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-arm64-v8a/maven-metadata.xml.sha1", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T13:43:31.839Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/evGCcA2DRiaGWc08NmtXhA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/evGCcA2DRiaGWc08NmtXhA/artifacts/public/build/target.json new file mode 100644 index 00000000..e2cc5a29 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/evGCcA2DRiaGWc08NmtXhA/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=aarch64-linux-android", + "buildid": "20200727133716", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 --target=aarch64-linux-android", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17 --target=aarch64-linux-android", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "fennec", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "android-aarch64", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "0e27829b5edf25746edcc684970c9e74f9604b4a", + "moz_update_channel": "default", + "target_alias": "aarch64-unknown-linux-android", + "target_cpu": "aarch64", + "target_os": "linux-android", + "target_vendor": "unknown" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/evGCcA2DRiaGWc08NmtXhA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/evGCcA2DRiaGWc08NmtXhA/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..c61f924e --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/evGCcA2DRiaGWc08NmtXhA/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,37 @@ +{ + "android_min_sdk": "21", + "appname": "fennec", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "mobile/android", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": false, + "official": true, + "os": "android", + "pgo": false, + "platform_guess": "android-aarch64", + "processor": "aarch64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": false, + "telemetry": false, + "tests_enabled": true, + "toolkit": "android", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": false +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/ezKbjCV5Rd-pr5WgeL44sQ/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/ezKbjCV5Rd-pr5WgeL44sQ/artifacts/.get deleted file mode 100644 index 62524f5b..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/ezKbjCV5Rd-pr5WgeL44sQ/artifacts/.get +++ /dev/null @@ -1,232 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.tar.gz", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-11-12T09:57:05.408Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/ezKbjCV5Rd-pr5WgeL44sQ/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/ezKbjCV5Rd-pr5WgeL44sQ/artifacts/public/build/target.json deleted file mode 100644 index 40c9981f..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/ezKbjCV5Rd-pr5WgeL44sQ/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/gcc/bin/gcc -std=gnu99", - "buildid": "20191113095525", - "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/gcc/bin/gcc -std=gnu99", - "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/gcc/bin/g++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "linux-x86_64-fuzzing", - "moz_source_repo": "https://hg.mozilla.org/mozilla-central", - "moz_source_stamp": "2f19e7b646e0a52fa855b75c868f0a3f3a990ad3", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/ezKbjCV5Rd-pr5WgeL44sQ/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/ezKbjCV5Rd-pr5WgeL44sQ/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index dc3a3c2e..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/ezKbjCV5Rd-pr5WgeL44sQ/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "cc_type": "gcc", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": false, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/f1fzXEpmRDe34boNc_Cklg/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/f1fzXEpmRDe34boNc_Cklg/artifacts/.get new file mode 100644 index 00000000..9239da92 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/f1fzXEpmRDe34boNc_Cklg/artifacts/.get @@ -0,0 +1,316 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/geckoview-androidTest.apk", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/geckoview_example.apk", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/vnd.android.package-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727132310/geckoview-default-x86_64-80.0.20200727132310.aar", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727132310/geckoview-default-x86_64-80.0.20200727132310.aar.md5", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727132310/geckoview-default-x86_64-80.0.20200727132310.aar.sha1", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727132310/geckoview-default-x86_64-80.0.20200727132310-javadoc.jar", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727132310/geckoview-default-x86_64-80.0.20200727132310-javadoc.jar.md5", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727132310/geckoview-default-x86_64-80.0.20200727132310-javadoc.jar.sha1", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727132310/geckoview-default-x86_64-80.0.20200727132310.pom", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727132310/geckoview-default-x86_64-80.0.20200727132310.pom.md5", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727132310/geckoview-default-x86_64-80.0.20200727132310.pom.sha1", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727132310/geckoview-default-x86_64-80.0.20200727132310-sources.jar", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/java-archive" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727132310/geckoview-default-x86_64-80.0.20200727132310-sources.jar.md5", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/80.0.20200727132310/geckoview-default-x86_64-80.0.20200727132310-sources.jar.sha1", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/maven-metadata.xml", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/xml" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/maven-metadata.xml.md5", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/maven/org/mozilla/geckoview/geckoview-default-x86_64/maven-metadata.xml.sha1", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.awsy.tests.tar.gz", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.common.tests.tar.gz", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.condprof.tests.tar.gz", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.cppunittest.tests.tar.gz", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.jittest.tests.tar.gz", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsreftest.tests.tar.gz", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.mochitest.tests.tar.gz", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.perftests.tests.tar.gz", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.raptor.tests.tar.gz", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.reftest.tests.tar.gz", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.talos.tests.tar.gz", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.test_packages.json", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.updater-dep.tests.tar.gz", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.web-platform.tests.tar.gz", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target.xpcshell.tests.tar.gz", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/toolchains.json", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T13:29:30.817Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/f1fzXEpmRDe34boNc_Cklg/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/f1fzXEpmRDe34boNc_Cklg/artifacts/public/build/target.json new file mode 100644 index 00000000..dca5ba4d --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/f1fzXEpmRDe34boNc_Cklg/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "", + "buildid": "20200727132310", + "cc": "", + "cxx": "", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{aa3c5121-dab2-40e2-81ca-7ea25febc110}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "fennec", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "android-x86_64", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "11bafbfe8e04325233d778083460426d2d1a8fa9", + "moz_update_channel": "default", + "target_alias": "x86_64-pc-linux-android", + "target_cpu": "x86_64", + "target_os": "linux-android", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/f1fzXEpmRDe34boNc_Cklg/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/f1fzXEpmRDe34boNc_Cklg/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..3291addc --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/f1fzXEpmRDe34boNc_Cklg/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,37 @@ +{ + "android_min_sdk": "21", + "appname": "fennec", + "artifact": true, + "asan": false, + "bin_suffix": "", + "bits": 64, + "buildapp": "mobile/android", + "buildtype_guess": "opt", + "cc_type": null, + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": false, + "official": true, + "os": "android", + "pgo": false, + "platform_guess": "android-x86_64", + "processor": "x86_64", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": false, + "telemetry": false, + "tests_enabled": true, + "toolkit": "android", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": false +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/f49zCWoJQGetJ7BX-dCTJw/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/f49zCWoJQGetJ7BX-dCTJw/artifacts/.get deleted file mode 100644 index ef514de8..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/f49zCWoJQGetJ7BX-dCTJw/artifacts/.get +++ /dev/null @@ -1,214 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/build_resources.html", - "expires": "2019-12-11T16:18:01.723Z", - "contentType": "text/html" - }, - { - "storageType": "s3", - "name": "public/build/build_resources.json", - "expires": "2019-12-11T16:18:01.723Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2019-12-11T16:18:01.723Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/config.status", - "expires": "2019-12-11T16:18:01.723Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2019-12-11T16:18:01.723Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2019-12-11T16:18:01.723Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2019-12-11T16:18:01.723Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/sccache.log", - "expires": "2019-12-11T16:18:01.723Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.tar.gz", - "expires": "2019-12-11T16:18:01.723Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2019-12-11T16:18:01.723Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.tar.gz", - "expires": "2019-12-11T16:18:01.723Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.condprof.tests.tar.gz", - "expires": "2019-12-11T16:18:01.723Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.tar.gz", - "expires": "2019-12-11T16:18:01.723Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2019-12-11T16:18:01.723Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2019-12-11T16:18:01.723Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2019-12-11T16:18:01.723Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.tar.gz", - "expires": "2019-12-11T16:18:01.723Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2019-12-11T16:18:01.723Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.raptor.tests.tar.gz", - "expires": "2019-12-11T16:18:01.723Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.tar.gz", - "expires": "2019-12-11T16:18:01.723Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.tar.gz", - "expires": "2019-12-11T16:18:01.723Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2019-12-11T16:18:01.723Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2019-12-11T16:18:01.723Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2019-12-11T16:18:01.723Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.updater-dep.tests.tar.gz", - "expires": "2019-12-11T16:18:01.723Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2019-12-11T16:18:01.723Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.tar.gz", - "expires": "2019-12-11T16:18:01.723Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2019-12-11T16:18:01.723Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2019-12-11T16:18:01.723Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2019-12-11T16:18:01.723Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2019-12-11T16:18:01.723Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2019-12-11T16:18:01.723Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2019-12-11T16:18:01.723Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2019-12-11T16:18:01.723Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2019-12-11T16:18:01.723Z", - "contentType": "application/json" - } - ] -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/f49zCWoJQGetJ7BX-dCTJw/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/f49zCWoJQGetJ7BX-dCTJw/artifacts/public/build/target.json deleted file mode 100644 index deb01d2d..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/f49zCWoJQGetJ7BX-dCTJw/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "", - "buildid": "20191113161527", - "cc": "", - "cxx": "", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "72.0a1", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "72.0a1", - "moz_pkg_platform": "linux-x86_64", - "moz_source_repo": "https://hg.mozilla.org/try", - "moz_source_stamp": "9524bc63eaae1ef9b7c8eb85bc62380f4f56786c", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-firefoxci/api/queue/v1/task/f49zCWoJQGetJ7BX-dCTJw/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/f49zCWoJQGetJ7BX-dCTJw/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 1de6b445..00000000 --- a/tests/mock-firefoxci/api/queue/v1/task/f49zCWoJQGetJ7BX-dCTJw/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": true, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "cc_type": null, - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": true, - "normandy": true, - "official": true, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": false, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true, - "xbl": false -} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/fdAblVGhSPqDHhsytrg3VA/artifacts/.get b/tests/mock-firefoxci/api/queue/v1/task/fdAblVGhSPqDHhsytrg3VA/artifacts/.get new file mode 100644 index 00000000..41a386a6 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/fdAblVGhSPqDHhsytrg3VA/artifacts/.get @@ -0,0 +1,160 @@ +{ + "artifacts": [ + { + "storageType": "s3", + "name": "public/build/buildhub.json", + "expires": "2020-08-24T02:50:54.637Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.html", + "expires": "2020-08-24T02:50:54.637Z", + "contentType": "text/html" + }, + { + "storageType": "s3", + "name": "public/build/build_resources.json", + "expires": "2020-08-24T02:50:54.637Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/config.status", + "expires": "2020-08-24T02:50:54.637Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mar", + "expires": "2020-08-24T02:50:54.637Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/host/bin/mbsdiff", + "expires": "2020-08-24T02:50:54.637Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/mozharness.zip", + "expires": "2020-08-24T02:50:54.637Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/sccache.log", + "expires": "2020-08-24T02:50:54.637Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.checksums", + "expires": "2020-08-24T02:50:54.637Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols-full.zip", + "expires": "2020-08-24T02:50:54.637Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.crashreporter-symbols.zip", + "expires": "2020-08-24T02:50:54.637Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.generated-files.tar.gz", + "expires": "2020-08-24T02:50:54.637Z", + "contentType": "application/gzip" + }, + { + "storageType": "s3", + "name": "public/build/target_info.txt", + "expires": "2020-08-24T02:50:54.637Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/target.json", + "expires": "2020-08-24T02:50:54.637Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.jsshell.zip", + "expires": "2020-08-24T02:50:54.637Z", + "contentType": "application/zip" + }, + { + "storageType": "s3", + "name": "public/build/target.langpack.xpi", + "expires": "2020-08-24T02:50:54.637Z", + "contentType": "application/x-xpinstall" + }, + { + "storageType": "s3", + "name": "public/build/target.mozinfo.json", + "expires": "2020-08-24T02:50:54.637Z", + "contentType": "application/json" + }, + { + "storageType": "s3", + "name": "public/build/target.tar.bz2", + "expires": "2020-08-24T02:50:54.637Z", + "contentType": "application/x-bzip2" + }, + { + "storageType": "s3", + "name": "public/build/target.txt", + "expires": "2020-08-24T02:50:54.637Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/build/xvfb/xvfb.log", + "expires": "2020-08-24T02:50:54.637Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json", + "expires": "2020-08-24T02:50:54.637Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/chain-of-trust.json.sig", + "expires": "2020-08-24T02:50:54.637Z", + "contentType": "application/octet-stream" + }, + { + "storageType": "s3", + "name": "public/logs/certified.log", + "expires": "2020-08-24T02:50:54.637Z", + "contentType": "text/plain" + }, + { + "storageType": "s3", + "name": "public/logs/live_backing.log", + "expires": "2020-08-24T02:50:54.637Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "reference", + "name": "public/logs/live.log", + "expires": "2020-08-24T02:50:54.637Z", + "contentType": "text/plain; charset=utf-8" + }, + { + "storageType": "s3", + "name": "public/logs/localconfig.json", + "expires": "2020-08-24T02:50:54.637Z", + "contentType": "application/json" + } + ] +} \ No newline at end of file diff --git a/tests/mock-firefoxci/api/queue/v1/task/fdAblVGhSPqDHhsytrg3VA/artifacts/public/build/target.json b/tests/mock-firefoxci/api/queue/v1/task/fdAblVGhSPqDHhsytrg3VA/artifacts/public/build/target.json new file mode 100644 index 00000000..b3f245c9 --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/fdAblVGhSPqDHhsytrg3VA/artifacts/public/build/target.json @@ -0,0 +1,23 @@ +{ + "as": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 -m32", + "buildid": "20200727024623", + "cc": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang -std=gnu99 -m32", + "cxx": "/builds/worker/fetches/sccache/sccache /builds/worker/fetches/clang/bin/clang++ -std=gnu++17 -m32", + "host_alias": "x86_64-pc-linux-gnu", + "host_cpu": "x86_64", + "host_os": "linux-gnu", + "host_vendor": "pc", + "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", + "moz_app_maxversion": "80.0a1", + "moz_app_name": "firefox", + "moz_app_vendor": "Mozilla", + "moz_app_version": "80.0a1", + "moz_pkg_platform": "linux-i686", + "moz_source_repo": "https://hg.mozilla.org/try", + "moz_source_stamp": "321902edb883e7a37efc6b686da6f20894c72f21", + "moz_update_channel": "default", + "target_alias": "i686-pc-linux-gnu", + "target_cpu": "i686", + "target_os": "linux-gnu", + "target_vendor": "pc" +} diff --git a/tests/mock-firefoxci/api/queue/v1/task/fdAblVGhSPqDHhsytrg3VA/artifacts/public/build/target.mozinfo.json b/tests/mock-firefoxci/api/queue/v1/task/fdAblVGhSPqDHhsytrg3VA/artifacts/public/build/target.mozinfo.json new file mode 100644 index 00000000..a8bc1fbc --- /dev/null +++ b/tests/mock-firefoxci/api/queue/v1/task/fdAblVGhSPqDHhsytrg3VA/artifacts/public/build/target.mozinfo.json @@ -0,0 +1,36 @@ +{ + "appname": "firefox", + "artifact": false, + "asan": false, + "bin_suffix": "", + "bits": 32, + "buildapp": "browser", + "buildtype_guess": "opt", + "cc_type": "clang", + "ccov": false, + "crashreporter": true, + "datareporting": true, + "debug": false, + "devedition": false, + "early_beta_or_earlier": true, + "healthreport": true, + "mozconfig": "/builds/worker/checkouts/gecko/.mozconfig", + "nightly_build": true, + "normandy": true, + "official": true, + "os": "linux", + "pgo": false, + "platform_guess": "linux", + "processor": "x86", + "release_or_beta": false, + "require_signing": false, + "stylo": true, + "sync": true, + "telemetry": false, + "tests_enabled": true, + "toolkit": "gtk", + "topsrcdir": "/builds/worker/checkouts/gecko", + "tsan": false, + "ubsan": false, + "updater": true +} \ No newline at end of file diff --git a/tests/mock-hg/mozilla-central/json-rev/4b3eacb45a38a33175976e7d76d1651334f52d82 b/tests/mock-hg/mozilla-central/json-rev/4b3eacb45a38a33175976e7d76d1651334f52d82 deleted file mode 100644 index 71996e4c..00000000 --- a/tests/mock-hg/mozilla-central/json-rev/4b3eacb45a38a33175976e7d76d1651334f52d82 +++ /dev/null @@ -1,16 +0,0 @@ -{ -"node": "4b3eacb45a38a33175976e7d76d1651334f52d82", -"date": [1573527315.0, 0], -"desc": "Bug 1568595 - [Nudges] Implement an experiment API to check whether a notification is being displayed in Firefox r=mak,mixedpuppy\n\nThis sets up a `browser.experiments.urlbar` WebExtension Experiment API and adds a function called `isBrowserShowingNotification`. To recap, for the nudges experiment, we want to open the urlbar view automatically in some cases to show a nudge, but only if the browser isn't already showing a notification.\n\nThere are a few things to point out about this patch.\n\nWhat counts as a notification is a little fuzzy. I chose: the tracking protection doorhanger, site identity doorhanger, app menu notifications, notification box (info bar), page action panels, and toolbar button panels. The last two aren't really notifications, but they're panels similar to doorhanger notifications. I also count the urlbar view as a notification since we don't want to show a nudge if the urlbar view is already open. I didn't bother with tab-modal dialogs since none of the pages we want to show nudges on will have them. I didn't bother with app-modal dialogs since the user can't interact with the browser until they're dismissed.\n\nI chose `browser.experiments.urlbar` as the namespace, which we previously used in the top-sites experiment. There was also discussion of `browser.experiments.app` (bug 1579933), but I think we should keep all our urlbar experiment-related APIs in a urlbar namespace even when they aren't actually related to the urlbar. It's not a big deal though.\n\nShane recommends that we land tests for our experiment APIs in mozilla-central even though they won't ship in mozilla-central, at least for APIs that will be used in more than one version of Firefox. I think that's also a good idea for APIs we reuse in multiple experiments. It may not be necessary in this case since I'm not sure how broadly useful this notification API is, so I'm open to removing it and keeping it only in the experiment's GitHub repo. But I found that this was actually a nice way to develop and test this patch. Also, if we keep our experiment APIs in mozilla-central this way, we may not need a separate GitHub repo for them, or at most it'll just be a copy of this browser/components/urlbar/tests/ext directory.\n\nAs mentioned, I made a new ext tests directory. I think we should keep these files separate from the normal tests.\n\nDifferential Revision: https://phabricator.services.mozilla.com/D52312", -"backedoutby": "", -"branch": "default", -"bookmarks": [], -"tags": [], -"user": "Drew Willcoxon \u003cadw@mozilla.com\u003e", -"parents": ["71e6f3199f98ea08f93ed6f5a5cfab9ca5ca221d"], -"phase": "public", -"pushid": 36794, -"pushdate": [1573551787, 0], -"pushuser": "aciure@mozilla.com", -"landingsystem": "lando" -} \ No newline at end of file diff --git a/tests/mock-hg/mozilla-central/json-rev/d1001fea6e4c b/tests/mock-hg/mozilla-central/json-rev/d1001fea6e4c index 63016129..619ad46a 100644 --- a/tests/mock-hg/mozilla-central/json-rev/d1001fea6e4c +++ b/tests/mock-hg/mozilla-central/json-rev/d1001fea6e4c @@ -5,7 +5,7 @@ "backedoutby": "", "branch": "default", "bookmarks": [], -"tags": ["tip"], +"tags": [], "user": "Sebastian Hengst \u003carchaeopteryx@coole-files.de\u003e", "parents": ["53cfede1065cc3eeb57bb1f2561ac830396e84c7"], "phase": "public", diff --git a/tests/mock-hg/mozilla-central/json-rev/d271c572a9bcd008ed14bf104b2eb81949952e4c b/tests/mock-hg/mozilla-central/json-rev/d271c572a9bcd008ed14bf104b2eb81949952e4c new file mode 100644 index 00000000..fbb458a2 --- /dev/null +++ b/tests/mock-hg/mozilla-central/json-rev/d271c572a9bcd008ed14bf104b2eb81949952e4c @@ -0,0 +1,16 @@ +{ +"node": "d271c572a9bcd008ed14bf104b2eb81949952e4c", +"date": [1573120068.0, -7200], +"desc": "Merge autoland to mozilla-central a=merge", +"backedoutby": "", +"branch": "default", +"bookmarks": [], +"tags": [], +"user": "Andreea Pavel \u003capavel@mozilla.com\u003e", +"parents": ["e8b7c48d4e7ed1b63aeedff379b51e566ea499d9", "85aa4fa5722bdcb6e0d13f29951772d3c7806e42"], +"phase": "public", +"pushid": 36778, +"pushdate": [1573120145, 0], +"pushuser": "apavel@mozilla.com", +"landingsystem": null +} \ No newline at end of file diff --git a/tests/mock-index/v1/namespaces/gecko.v2.mozilla-central.pushdate.2019.11.12 b/tests/mock-index/v1/namespaces/gecko.v2.mozilla-central.pushdate.2019.11.12 deleted file mode 100644 index eb4f85a7..00000000 --- a/tests/mock-index/v1/namespaces/gecko.v2.mozilla-central.pushdate.2019.11.12 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "namespaces": [] -} \ No newline at end of file diff --git a/tests/mock-index/v1/namespaces/gecko.v2.mozilla-central.pushdate.2019.11.13 b/tests/mock-index/v1/namespaces/gecko.v2.mozilla-central.pushdate.2019.11.13 deleted file mode 100644 index eb4f85a7..00000000 --- a/tests/mock-index/v1/namespaces/gecko.v2.mozilla-central.pushdate.2019.11.13 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "namespaces": [] -} \ No newline at end of file diff --git a/tests/mock-index/v1/namespaces/gecko.v2.mozilla-central.pushdate.2019.11.14 b/tests/mock-index/v1/namespaces/gecko.v2.mozilla-central.pushdate.2019.11.14 deleted file mode 100644 index eb4f85a7..00000000 --- a/tests/mock-index/v1/namespaces/gecko.v2.mozilla-central.pushdate.2019.11.14 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "namespaces": [] -} \ No newline at end of file diff --git a/tests/mock-index/v1/namespaces/gecko.v2.mozilla-central.pushdate.2019.11.15 b/tests/mock-index/v1/namespaces/gecko.v2.mozilla-central.pushdate.2019.11.15 deleted file mode 100644 index eb4f85a7..00000000 --- a/tests/mock-index/v1/namespaces/gecko.v2.mozilla-central.pushdate.2019.11.15 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "namespaces": [] -} \ No newline at end of file diff --git a/tests/mock-index/v1/namespaces/gecko.v2.mozilla-central.pushdate.2019.12.17 b/tests/mock-index/v1/namespaces/gecko.v2.mozilla-central.pushdate.2019.12.17 deleted file mode 100644 index eb4f85a7..00000000 --- a/tests/mock-index/v1/namespaces/gecko.v2.mozilla-central.pushdate.2019.12.17 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "namespaces": [] -} \ No newline at end of file diff --git a/tests/mock-index/v1/namespaces/gecko.v2.mozilla-esr60.pushdate.2019.10.14 b/tests/mock-index/v1/namespaces/gecko.v2.mozilla-esr60.pushdate.2019.10.14 deleted file mode 100644 index d42e5d0e..00000000 --- a/tests/mock-index/v1/namespaces/gecko.v2.mozilla-esr60.pushdate.2019.10.14 +++ /dev/null @@ -1,9 +0,0 @@ -{ - "namespaces": [ - { - "namespace": "gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614", - "name": "20191014131614", - "expires": "2020-10-23T00:00:00.000Z" - } - ] -} \ No newline at end of file diff --git a/tests/mock-index/v1/namespaces/gecko.v2.mozilla-esr68.pushdate.2019.08.13 b/tests/mock-index/v1/namespaces/gecko.v2.mozilla-esr68.pushdate.2019.08.13 deleted file mode 100644 index f6600329..00000000 --- a/tests/mock-index/v1/namespaces/gecko.v2.mozilla-esr68.pushdate.2019.08.13 +++ /dev/null @@ -1,14 +0,0 @@ -{ - "namespaces": [ - { - "namespace": "gecko.v2.mozilla-esr68.pushdate.2019.08.13.20190813100032", - "name": "20190813100032", - "expires": "2020-08-15T00:00:00.000Z" - }, - { - "namespace": "gecko.v2.mozilla-esr68.pushdate.2019.08.13.20190813155538", - "name": "20190813155538", - "expires": "2020-08-15T00:00:00.000Z" - } - ] -} \ No newline at end of file diff --git a/tests/mock-index/v1/namespaces/gecko.v2.mozilla-esr68.pushdate.2019.11.12 b/tests/mock-index/v1/namespaces/gecko.v2.mozilla-esr68.pushdate.2019.11.12 deleted file mode 100644 index eb4f85a7..00000000 --- a/tests/mock-index/v1/namespaces/gecko.v2.mozilla-esr68.pushdate.2019.11.12 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "namespaces": [] -} \ No newline at end of file diff --git a/tests/mock-index/v1/namespaces/gecko.v2.try.pushdate.2019.11.13 b/tests/mock-index/v1/namespaces/gecko.v2.try.pushdate.2019.11.13 deleted file mode 100644 index eb4f85a7..00000000 --- a/tests/mock-index/v1/namespaces/gecko.v2.try.pushdate.2019.11.13 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "namespaces": [] -} \ No newline at end of file diff --git a/tests/mock-index/v1/namespaces/gecko.v2.try.pushdate.2019.12.17 b/tests/mock-index/v1/namespaces/gecko.v2.try.pushdate.2019.12.17 deleted file mode 100644 index eb4f85a7..00000000 --- a/tests/mock-index/v1/namespaces/gecko.v2.try.pushdate.2019.12.17 +++ /dev/null @@ -1,3 +0,0 @@ -{ - "namespaces": [] -} \ No newline at end of file diff --git a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.linux-debug b/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.linux-debug deleted file mode 100644 index e10732f8..00000000 --- a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.linux-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.linux-debug", - "taskId": "WMHJbRaXSi6WXnuVk4fTRA", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:45.007Z" -} \ No newline at end of file diff --git a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.linux-opt b/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.linux-opt deleted file mode 100644 index a83b5494..00000000 --- a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.linux-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.linux-opt", - "taskId": "ZIUtxeA1TYmvBJLmA0YRZw", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:44.980Z" -} \ No newline at end of file diff --git a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.linux64-asan-opt b/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.linux64-asan-opt deleted file mode 100644 index e9c9ed9e..00000000 --- a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.linux64-asan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.linux64-asan-opt", - "taskId": "IXnHnehhSjGDB8s_e_-N_w", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:44.977Z" -} \ No newline at end of file diff --git a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.linux64-debug b/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.linux64-debug deleted file mode 100644 index dd63eb4f..00000000 --- a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.linux64-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.linux64-debug", - "taskId": "J41SVE-sRF21MAiXRpXOgg", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:44.964Z" -} \ No newline at end of file diff --git a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.linux64-fuzzing-asan-opt b/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.linux64-fuzzing-asan-opt deleted file mode 100644 index 593429f9..00000000 --- a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.linux64-fuzzing-asan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.linux64-fuzzing-asan-opt", - "taskId": "WSKwsLgmQXCXWCd1UdWz7Q", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:44.986Z" -} \ No newline at end of file diff --git a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.linux64-fuzzing-debug b/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.linux64-fuzzing-debug deleted file mode 100644 index 3bd306c1..00000000 --- a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.linux64-fuzzing-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.linux64-fuzzing-debug", - "taskId": "Kn632XVVRz2tVefNIlC7Ow", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:45.030Z" -} \ No newline at end of file diff --git a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.linux64-opt b/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.linux64-opt deleted file mode 100644 index 2ffb09ff..00000000 --- a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.linux64-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.linux64-opt", - "taskId": "Wp5v7gouSqSGc0OF3fDbJA", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:44.974Z" -} \ No newline at end of file diff --git a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.linux64-valgrind-opt b/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.linux64-valgrind-opt deleted file mode 100644 index 2a708a1b..00000000 --- a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.linux64-valgrind-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.linux64-valgrind-opt", - "taskId": "E1p0LzmBSQqukKd0yhrAjw", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:45.029Z" -} \ No newline at end of file diff --git a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.macosx64-debug b/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.macosx64-debug deleted file mode 100644 index dbfe767a..00000000 --- a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.macosx64-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.macosx64-debug", - "taskId": "RnuyytsuQmuySSFQt0y6lw", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:44.962Z" -} \ No newline at end of file diff --git a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.macosx64-fuzzing-asan-opt b/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.macosx64-fuzzing-asan-opt deleted file mode 100644 index c786c9ef..00000000 --- a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.macosx64-fuzzing-asan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.macosx64-fuzzing-asan-opt", - "taskId": "ViKm6PJ5QYyVJy0XZpwK0Q", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:44.993Z" -} \ No newline at end of file diff --git a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.macosx64-opt b/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.macosx64-opt deleted file mode 100644 index 1a51e0c6..00000000 --- a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.macosx64-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.macosx64-opt", - "taskId": "eYMhAWGmSpKLp4UmN7eVyg", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:44.970Z" -} \ No newline at end of file diff --git a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.win64-debug b/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.win64-debug deleted file mode 100644 index 7460b99d..00000000 --- a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.win64-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.win64-debug", - "taskId": "Fl6LbluWQnybFSPpgLMKiw", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:45.012Z" -} \ No newline at end of file diff --git a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.win64-opt b/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.win64-opt deleted file mode 100644 index 4f590601..00000000 --- a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.win64-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.pushdate.2019.10.14.20191014131614.firefox.win64-opt", - "taskId": "NTKDp9loS6adtUEUDoBBxw", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:45.020Z" -} \ No newline at end of file diff --git a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.linux-debug b/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.linux-debug deleted file mode 100644 index b6bb1cb9..00000000 --- a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.linux-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.linux-debug", - "taskId": "WMHJbRaXSi6WXnuVk4fTRA", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:45.007Z" -} \ No newline at end of file diff --git a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.linux-opt b/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.linux-opt deleted file mode 100644 index 44caff88..00000000 --- a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.linux-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.linux-opt", - "taskId": "ZIUtxeA1TYmvBJLmA0YRZw", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:44.980Z" -} \ No newline at end of file diff --git a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.linux64-asan-opt b/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.linux64-asan-opt deleted file mode 100644 index b752f90d..00000000 --- a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.linux64-asan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.linux64-asan-opt", - "taskId": "IXnHnehhSjGDB8s_e_-N_w", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:44.977Z" -} \ No newline at end of file diff --git a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.linux64-debug b/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.linux64-debug deleted file mode 100644 index 0abbf811..00000000 --- a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.linux64-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.linux64-debug", - "taskId": "J41SVE-sRF21MAiXRpXOgg", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:44.964Z" -} \ No newline at end of file diff --git a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.linux64-fuzzing-asan-opt b/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.linux64-fuzzing-asan-opt deleted file mode 100644 index ffb27193..00000000 --- a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.linux64-fuzzing-asan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.linux64-fuzzing-asan-opt", - "taskId": "WSKwsLgmQXCXWCd1UdWz7Q", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:44.986Z" -} \ No newline at end of file diff --git a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.linux64-fuzzing-debug b/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.linux64-fuzzing-debug deleted file mode 100644 index b1459398..00000000 --- a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.linux64-fuzzing-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.linux64-fuzzing-debug", - "taskId": "Kn632XVVRz2tVefNIlC7Ow", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:45.030Z" -} \ No newline at end of file diff --git a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.linux64-opt b/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.linux64-opt deleted file mode 100644 index 7c54f7a1..00000000 --- a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.linux64-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.linux64-opt", - "taskId": "Wp5v7gouSqSGc0OF3fDbJA", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:44.974Z" -} \ No newline at end of file diff --git a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.linux64-valgrind-opt b/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.linux64-valgrind-opt deleted file mode 100644 index e7862e6c..00000000 --- a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.linux64-valgrind-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.linux64-valgrind-opt", - "taskId": "E1p0LzmBSQqukKd0yhrAjw", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:45.029Z" -} \ No newline at end of file diff --git a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.macosx64-debug b/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.macosx64-debug deleted file mode 100644 index 21a466b1..00000000 --- a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.macosx64-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.macosx64-debug", - "taskId": "RnuyytsuQmuySSFQt0y6lw", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:44.962Z" -} \ No newline at end of file diff --git a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.macosx64-fuzzing-asan-opt b/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.macosx64-fuzzing-asan-opt deleted file mode 100644 index b4801915..00000000 --- a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.macosx64-fuzzing-asan-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.macosx64-fuzzing-asan-opt", - "taskId": "ViKm6PJ5QYyVJy0XZpwK0Q", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:44.993Z" -} \ No newline at end of file diff --git a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.macosx64-opt b/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.macosx64-opt deleted file mode 100644 index 29509269..00000000 --- a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.macosx64-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.macosx64-opt", - "taskId": "eYMhAWGmSpKLp4UmN7eVyg", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:44.970Z" -} \ No newline at end of file diff --git a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.win64-debug b/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.win64-debug deleted file mode 100644 index bc776b9d..00000000 --- a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.win64-debug +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.win64-debug", - "taskId": "Fl6LbluWQnybFSPpgLMKiw", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:45.012Z" -} \ No newline at end of file diff --git a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.win64-opt b/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.win64-opt deleted file mode 100644 index 9c456ab9..00000000 --- a/tests/mock-index/v1/task/gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.win64-opt +++ /dev/null @@ -1,7 +0,0 @@ -{ - "namespace": "gecko.v2.mozilla-esr60.revision.e67641c2e4ccd1fe2d4cd522b6575adec838697a.firefox.win64-opt", - "taskId": "NTKDp9loS6adtUEUDoBBxw", - "rank": 1571058974, - "data": {}, - "expires": "2020-10-13T13:17:45.020Z" -} \ No newline at end of file diff --git a/tests/mock-product-details/1.0/firefox_versions.json b/tests/mock-product-details/1.0/firefox_versions.json deleted file mode 100644 index 96efa927..00000000 --- a/tests/mock-product-details/1.0/firefox_versions.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "FIREFOX_AURORA": "", - "FIREFOX_DEVEDITION": "71.0b1", - "FIREFOX_ESR": "60.9.0esr", - "FIREFOX_ESR_NEXT": "68.1.0esr", - "FIREFOX_NIGHTLY": "71.0a1", - "LAST_MERGE_DATE": "2019-09-02", - "LAST_RELEASE_DATE": "2019-09-03", - "LAST_SOFTFREEZE_DATE": "2019-08-26", - "LATEST_FIREFOX_DEVEL_VERSION": "70.0b14", - "LATEST_FIREFOX_OLDER_VERSION": "3.6.28", - "LATEST_FIREFOX_RELEASED_DEVEL_VERSION": "70.0b14", - "LATEST_FIREFOX_VERSION": "69.0.3", - "NEXT_MERGE_DATE": "2019-10-21", - "NEXT_RELEASE_DATE": "2019-10-22", - "NEXT_SOFTFREEZE_DATE": "2019-10-14" -} \ No newline at end of file diff --git a/tests/mock-queue/v1/task/E1p0LzmBSQqukKd0yhrAjw/artifacts/.get b/tests/mock-queue/v1/task/E1p0LzmBSQqukKd0yhrAjw/artifacts/.get deleted file mode 100644 index 24d305a4..00000000 --- a/tests/mock-queue/v1/task/E1p0LzmBSQqukKd0yhrAjw/artifacts/.get +++ /dev/null @@ -1,226 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.zip", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.zip", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.zip", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.zip", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.zip", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.stylo-bindings.zip", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.zip", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.zip", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/logs/log_critical.log", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_debug.log", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_error.log", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_fatal.log", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_info.log", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_raw.log", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_warning.log", - "expires": "2020-10-13T13:17:45.029Z", - "contentType": "text/plain" - } - ] -} \ No newline at end of file diff --git a/tests/mock-queue/v1/task/E1p0LzmBSQqukKd0yhrAjw/artifacts/public/build/target.json b/tests/mock-queue/v1/task/E1p0LzmBSQqukKd0yhrAjw/artifacts/public/build/target.json deleted file mode 100644 index b50a4a26..00000000 --- a/tests/mock-queue/v1/task/E1p0LzmBSQqukKd0yhrAjw/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "$(CC)", - "buildid": "20191014131614", - "cc": "/builds/worker/workspace/build/src/gcc/bin/gcc -std=gnu99", - "cxx": "/builds/worker/workspace/build/src/gcc/bin/g++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "60.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "60.9.1", - "moz_pkg_platform": "linux-x86_64", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr60", - "moz_source_stamp": "e67641c2e4ccd1fe2d4cd522b6575adec838697a", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-queue/v1/task/E1p0LzmBSQqukKd0yhrAjw/artifacts/public/build/target.mozinfo.json b/tests/mock-queue/v1/task/E1p0LzmBSQqukKd0yhrAjw/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 754e166d..00000000 --- a/tests/mock-queue/v1/task/E1p0LzmBSQqukKd0yhrAjw/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "addon_signing": true, - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": true, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk3", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-queue/v1/task/Fl6LbluWQnybFSPpgLMKiw/artifacts/.get b/tests/mock-queue/v1/task/Fl6LbluWQnybFSPpgLMKiw/artifacts/.get deleted file mode 100644 index d3eb05ec..00000000 --- a/tests/mock-queue/v1/task/Fl6LbluWQnybFSPpgLMKiw/artifacts/.get +++ /dev/null @@ -1,250 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar.exe", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff.exe", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/install/sea/target.installer.exe", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/setup.exe", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.zip", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.zip", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.zip", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.zip", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.zip", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.zip", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.stylo-bindings.zip", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.zip", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.zip", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.zip", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/log_critical.log", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_error.log", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_fatal.log", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_info.log", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_raw.log", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_warning.log", - "expires": "2020-10-13T13:17:45.012Z", - "contentType": "text/plain" - } - ] -} \ No newline at end of file diff --git a/tests/mock-queue/v1/task/Fl6LbluWQnybFSPpgLMKiw/artifacts/public/build/target.json b/tests/mock-queue/v1/task/Fl6LbluWQnybFSPpgLMKiw/artifacts/public/build/target.json deleted file mode 100644 index 96ef513e..00000000 --- a/tests/mock-queue/v1/task/Fl6LbluWQnybFSPpgLMKiw/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "ml64.exe", - "buildid": "20191014131614", - "cc": "z:/build/build/src/vs2017_15.4.2/VC/bin/Hostx64/x64/cl.exe", - "cxx": "z:/build/build/src/vs2017_15.4.2/VC/bin/Hostx64/x64/cl.exe", - "host_alias": "x86_64-pc-mingw32", - "host_cpu": "x86_64", - "host_os": "mingw32", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "60.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "60.9.1", - "moz_pkg_platform": "win64", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr60", - "moz_source_stamp": "e67641c2e4ccd1fe2d4cd522b6575adec838697a", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-mingw32", - "target_cpu": "x86_64", - "target_os": "mingw32", - "target_vendor": "pc" -} diff --git a/tests/mock-queue/v1/task/Fl6LbluWQnybFSPpgLMKiw/artifacts/public/build/target.mozinfo.json b/tests/mock-queue/v1/task/Fl6LbluWQnybFSPpgLMKiw/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 5be29f88..00000000 --- a/tests/mock-queue/v1/task/Fl6LbluWQnybFSPpgLMKiw/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "addon_signing": true, - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": ".exe", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "z:/build/build/src/.mozconfig", - "nightly_build": false, - "official": true, - "os": "win", - "pgo": false, - "platform_guess": "win64", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "windows", - "topsrcdir": "z:/build/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-queue/v1/task/IXnHnehhSjGDB8s_e_-N_w/artifacts/.get b/tests/mock-queue/v1/task/IXnHnehhSjGDB8s_e_-N_w/artifacts/.get deleted file mode 100644 index 8cccafd3..00000000 --- a/tests/mock-queue/v1/task/IXnHnehhSjGDB8s_e_-N_w/artifacts/.get +++ /dev/null @@ -1,238 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.zip", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.zip", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.zip", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.zip", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.zip", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.zip", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.stylo-bindings.zip", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.zip", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.zip", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/logs/log_critical.log", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_debug.log", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_error.log", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_fatal.log", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_info.log", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_raw.log", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_warning.log", - "expires": "2020-10-13T13:17:44.977Z", - "contentType": "text/plain" - } - ] -} \ No newline at end of file diff --git a/tests/mock-queue/v1/task/IXnHnehhSjGDB8s_e_-N_w/artifacts/public/build/target.json b/tests/mock-queue/v1/task/IXnHnehhSjGDB8s_e_-N_w/artifacts/public/build/target.json deleted file mode 100644 index a85f3f93..00000000 --- a/tests/mock-queue/v1/task/IXnHnehhSjGDB8s_e_-N_w/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "$(CC)", - "buildid": "20191014131614", - "cc": "/builds/worker/workspace/build/src/clang/bin/clang -fgnu89-inline -B /builds/worker/workspace/build/src/gcc/bin -std=gnu99", - "cxx": "/builds/worker/workspace/build/src/clang/bin/clang++ -B /builds/worker/workspace/build/src/gcc/bin -std=gnu++14", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "60.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "60.9.1", - "moz_pkg_platform": "linux-x86_64-asan", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr60", - "moz_source_stamp": "e67641c2e4ccd1fe2d4cd522b6575adec838697a", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-queue/v1/task/IXnHnehhSjGDB8s_e_-N_w/artifacts/public/build/target.mozinfo.json b/tests/mock-queue/v1/task/IXnHnehhSjGDB8s_e_-N_w/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 6aff7c6f..00000000 --- a/tests/mock-queue/v1/task/IXnHnehhSjGDB8s_e_-N_w/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "addon_signing": true, - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": true, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "ccov": false, - "crashreporter": false, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": false, - "os": "linux", - "pgo": false, - "platform_guess": "linux64-asan", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk3", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-queue/v1/task/J41SVE-sRF21MAiXRpXOgg/artifacts/.get b/tests/mock-queue/v1/task/J41SVE-sRF21MAiXRpXOgg/artifacts/.get deleted file mode 100644 index 75e242b9..00000000 --- a/tests/mock-queue/v1/task/J41SVE-sRF21MAiXRpXOgg/artifacts/.get +++ /dev/null @@ -1,250 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.zip", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.zip", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.zip", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.zip", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.zip", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.zip", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.stylo-bindings.zip", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.zip", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.zip", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/logs/log_critical.log", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_debug.log", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_error.log", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_fatal.log", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_info.log", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_raw.log", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_warning.log", - "expires": "2020-10-13T13:17:44.964Z", - "contentType": "text/plain" - } - ] -} \ No newline at end of file diff --git a/tests/mock-queue/v1/task/J41SVE-sRF21MAiXRpXOgg/artifacts/public/build/target.json b/tests/mock-queue/v1/task/J41SVE-sRF21MAiXRpXOgg/artifacts/public/build/target.json deleted file mode 100644 index b50a4a26..00000000 --- a/tests/mock-queue/v1/task/J41SVE-sRF21MAiXRpXOgg/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "$(CC)", - "buildid": "20191014131614", - "cc": "/builds/worker/workspace/build/src/gcc/bin/gcc -std=gnu99", - "cxx": "/builds/worker/workspace/build/src/gcc/bin/g++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "60.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "60.9.1", - "moz_pkg_platform": "linux-x86_64", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr60", - "moz_source_stamp": "e67641c2e4ccd1fe2d4cd522b6575adec838697a", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-queue/v1/task/J41SVE-sRF21MAiXRpXOgg/artifacts/public/build/target.mozinfo.json b/tests/mock-queue/v1/task/J41SVE-sRF21MAiXRpXOgg/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 0272f9ff..00000000 --- a/tests/mock-queue/v1/task/J41SVE-sRF21MAiXRpXOgg/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "addon_signing": true, - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": true, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk3", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-queue/v1/task/Kn632XVVRz2tVefNIlC7Ow/artifacts/.get b/tests/mock-queue/v1/task/Kn632XVVRz2tVefNIlC7Ow/artifacts/.get deleted file mode 100644 index f97cad23..00000000 --- a/tests/mock-queue/v1/task/Kn632XVVRz2tVefNIlC7Ow/artifacts/.get +++ /dev/null @@ -1,244 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.zip", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.zip", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.zip", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.zip", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.zip", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.zip", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.stylo-bindings.zip", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.zip", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.zip", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/logs/log_critical.log", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_debug.log", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_error.log", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_fatal.log", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_info.log", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_raw.log", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_warning.log", - "expires": "2020-10-13T13:17:45.030Z", - "contentType": "text/plain" - } - ] -} \ No newline at end of file diff --git a/tests/mock-queue/v1/task/Kn632XVVRz2tVefNIlC7Ow/artifacts/public/build/target.json b/tests/mock-queue/v1/task/Kn632XVVRz2tVefNIlC7Ow/artifacts/public/build/target.json deleted file mode 100644 index 1bb33efd..00000000 --- a/tests/mock-queue/v1/task/Kn632XVVRz2tVefNIlC7Ow/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "$(CC)", - "buildid": "20191014131614", - "cc": "/builds/worker/workspace/build/src/gcc/bin/gcc -std=gnu99", - "cxx": "/builds/worker/workspace/build/src/gcc/bin/g++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "60.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "60.9.1", - "moz_pkg_platform": "linux-x86_64-fuzzing", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr60", - "moz_source_stamp": "e67641c2e4ccd1fe2d4cd522b6575adec838697a", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-queue/v1/task/Kn632XVVRz2tVefNIlC7Ow/artifacts/public/build/target.mozinfo.json b/tests/mock-queue/v1/task/Kn632XVVRz2tVefNIlC7Ow/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 7efd552d..00000000 --- a/tests/mock-queue/v1/task/Kn632XVVRz2tVefNIlC7Ow/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "addon_signing": true, - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": false, - "os": "linux", - "pgo": false, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk3", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-queue/v1/task/NTKDp9loS6adtUEUDoBBxw/artifacts/.get b/tests/mock-queue/v1/task/NTKDp9loS6adtUEUDoBBxw/artifacts/.get deleted file mode 100644 index fcd6c37e..00000000 --- a/tests/mock-queue/v1/task/NTKDp9loS6adtUEUDoBBxw/artifacts/.get +++ /dev/null @@ -1,244 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar.exe", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff.exe", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/install/sea/target.installer.exe", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/setup.exe", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-msdownload" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.zip", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.zip", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.zip", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.zip", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.zip", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.stylo-bindings.zip", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.zip", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.zip", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target.zip", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/x-zip-compressed" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/log_critical.log", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_error.log", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_fatal.log", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_info.log", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_raw.log", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_warning.log", - "expires": "2020-10-13T13:17:45.020Z", - "contentType": "text/plain" - } - ] -} \ No newline at end of file diff --git a/tests/mock-queue/v1/task/NTKDp9loS6adtUEUDoBBxw/artifacts/public/build/target.json b/tests/mock-queue/v1/task/NTKDp9loS6adtUEUDoBBxw/artifacts/public/build/target.json deleted file mode 100644 index 96ef513e..00000000 --- a/tests/mock-queue/v1/task/NTKDp9loS6adtUEUDoBBxw/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "ml64.exe", - "buildid": "20191014131614", - "cc": "z:/build/build/src/vs2017_15.4.2/VC/bin/Hostx64/x64/cl.exe", - "cxx": "z:/build/build/src/vs2017_15.4.2/VC/bin/Hostx64/x64/cl.exe", - "host_alias": "x86_64-pc-mingw32", - "host_cpu": "x86_64", - "host_os": "mingw32", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "60.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "60.9.1", - "moz_pkg_platform": "win64", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr60", - "moz_source_stamp": "e67641c2e4ccd1fe2d4cd522b6575adec838697a", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-mingw32", - "target_cpu": "x86_64", - "target_os": "mingw32", - "target_vendor": "pc" -} diff --git a/tests/mock-queue/v1/task/NTKDp9loS6adtUEUDoBBxw/artifacts/public/build/target.mozinfo.json b/tests/mock-queue/v1/task/NTKDp9loS6adtUEUDoBBxw/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index b135f181..00000000 --- a/tests/mock-queue/v1/task/NTKDp9loS6adtUEUDoBBxw/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "addon_signing": true, - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": ".exe", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "pgo", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "z:/build/build/src/.mozconfig", - "nightly_build": false, - "official": true, - "os": "win", - "pgo": true, - "platform_guess": "win64", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "windows", - "topsrcdir": "z:/build/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-queue/v1/task/RnuyytsuQmuySSFQt0y6lw/artifacts/.get b/tests/mock-queue/v1/task/RnuyytsuQmuySSFQt0y6lw/artifacts/.get deleted file mode 100644 index c6f3a90e..00000000 --- a/tests/mock-queue/v1/task/RnuyytsuQmuySSFQt0y6lw/artifacts/.get +++ /dev/null @@ -1,244 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.zip", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.zip", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.zip", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.dmg", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.zip", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.zip", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.zip", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.stylo-bindings.zip", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.zip", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.zip", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/logs/log_critical.log", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_debug.log", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_error.log", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_fatal.log", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_info.log", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_raw.log", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_warning.log", - "expires": "2020-10-13T13:17:44.962Z", - "contentType": "text/plain" - } - ] -} \ No newline at end of file diff --git a/tests/mock-queue/v1/task/RnuyytsuQmuySSFQt0y6lw/artifacts/public/build/target.json b/tests/mock-queue/v1/task/RnuyytsuQmuySSFQt0y6lw/artifacts/public/build/target.json deleted file mode 100644 index e27509e7..00000000 --- a/tests/mock-queue/v1/task/RnuyytsuQmuySSFQt0y6lw/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "$(CC)", - "buildid": "20191014131614", - "cc": "/builds/worker/workspace/build/src/clang/bin/clang -target x86_64-apple-darwin11 -B /builds/worker/workspace/build/src/cctools/bin -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99", - "cxx": "/builds/worker/workspace/build/src/clang/bin/clang++ -target x86_64-apple-darwin11 -B /builds/worker/workspace/build/src/cctools/bin -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu++14", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "60.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "60.9.1", - "moz_pkg_platform": "mac", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr60", - "moz_source_stamp": "e67641c2e4ccd1fe2d4cd522b6575adec838697a", - "moz_update_channel": "default", - "target_alias": "x86_64-apple-darwin", - "target_cpu": "x86_64", - "target_os": "darwin", - "target_vendor": "apple" -} diff --git a/tests/mock-queue/v1/task/RnuyytsuQmuySSFQt0y6lw/artifacts/public/build/target.mozinfo.json b/tests/mock-queue/v1/task/RnuyytsuQmuySSFQt0y6lw/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 1f9f0653..00000000 --- a/tests/mock-queue/v1/task/RnuyytsuQmuySSFQt0y6lw/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "addon_signing": true, - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "debug", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": true, - "os": "mac", - "pgo": false, - "platform_guess": "macosx64", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "cocoa", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-queue/v1/task/ViKm6PJ5QYyVJy0XZpwK0Q/artifacts/.get b/tests/mock-queue/v1/task/ViKm6PJ5QYyVJy0XZpwK0Q/artifacts/.get deleted file mode 100644 index 61f9c25e..00000000 --- a/tests/mock-queue/v1/task/ViKm6PJ5QYyVJy0XZpwK0Q/artifacts/.get +++ /dev/null @@ -1,232 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.zip", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.zip", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.zip", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.dmg", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.zip", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.zip", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.zip", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.stylo-bindings.zip", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.zip", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.zip", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/logs/log_critical.log", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_debug.log", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_error.log", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_fatal.log", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_info.log", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_raw.log", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_warning.log", - "expires": "2020-10-13T13:17:44.993Z", - "contentType": "text/plain" - } - ] -} \ No newline at end of file diff --git a/tests/mock-queue/v1/task/ViKm6PJ5QYyVJy0XZpwK0Q/artifacts/public/build/target.json b/tests/mock-queue/v1/task/ViKm6PJ5QYyVJy0XZpwK0Q/artifacts/public/build/target.json deleted file mode 100644 index fa959353..00000000 --- a/tests/mock-queue/v1/task/ViKm6PJ5QYyVJy0XZpwK0Q/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "$(CC)", - "buildid": "20191014131614", - "cc": "/builds/worker/workspace/build/src/clang/bin/clang -target x86_64-apple-darwin11 -B /builds/worker/workspace/build/src/cctools/bin -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99", - "cxx": "/builds/worker/workspace/build/src/clang/bin/clang++ -target x86_64-apple-darwin11 -B /builds/worker/workspace/build/src/cctools/bin -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu++14", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "60.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "60.9.1", - "moz_pkg_platform": "mac-asan", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr60", - "moz_source_stamp": "e67641c2e4ccd1fe2d4cd522b6575adec838697a", - "moz_update_channel": "default", - "target_alias": "x86_64-apple-darwin", - "target_cpu": "x86_64", - "target_os": "darwin", - "target_vendor": "apple" -} diff --git a/tests/mock-queue/v1/task/ViKm6PJ5QYyVJy0XZpwK0Q/artifacts/public/build/target.mozinfo.json b/tests/mock-queue/v1/task/ViKm6PJ5QYyVJy0XZpwK0Q/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 159dc7fe..00000000 --- a/tests/mock-queue/v1/task/ViKm6PJ5QYyVJy0XZpwK0Q/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "addon_signing": true, - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": true, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "ccov": false, - "crashreporter": false, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": false, - "os": "mac", - "pgo": false, - "platform_guess": "macosx64-asan", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "cocoa", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-queue/v1/task/WMHJbRaXSi6WXnuVk4fTRA/artifacts/.get b/tests/mock-queue/v1/task/WMHJbRaXSi6WXnuVk4fTRA/artifacts/.get deleted file mode 100644 index 6fe101c4..00000000 --- a/tests/mock-queue/v1/task/WMHJbRaXSi6WXnuVk4fTRA/artifacts/.get +++ /dev/null @@ -1,250 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.zip", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.zip", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.zip", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.zip", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.zip", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.zip", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.stylo-bindings.zip", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.zip", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.zip", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/logs/log_critical.log", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_debug.log", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_error.log", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_fatal.log", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_info.log", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_raw.log", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_warning.log", - "expires": "2020-10-13T13:17:45.007Z", - "contentType": "text/plain" - } - ] -} \ No newline at end of file diff --git a/tests/mock-queue/v1/task/WMHJbRaXSi6WXnuVk4fTRA/artifacts/public/build/target.json b/tests/mock-queue/v1/task/WMHJbRaXSi6WXnuVk4fTRA/artifacts/public/build/target.json deleted file mode 100644 index 3ea93bf0..00000000 --- a/tests/mock-queue/v1/task/WMHJbRaXSi6WXnuVk4fTRA/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "$(CC)", - "buildid": "20191014131614", - "cc": "/builds/worker/workspace/build/src/gcc/bin/gcc -m32 -march=pentium-m -std=gnu99", - "cxx": "/builds/worker/workspace/build/src/gcc/bin/g++ -m32 -march=pentium-m", - "host_alias": "i686-pc-linux-gnu", - "host_cpu": "i686", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "60.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "60.9.1", - "moz_pkg_platform": "linux-i686", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr60", - "moz_source_stamp": "e67641c2e4ccd1fe2d4cd522b6575adec838697a", - "moz_update_channel": "default", - "target_alias": "i686-pc-linux-gnu", - "target_cpu": "i686", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-queue/v1/task/WMHJbRaXSi6WXnuVk4fTRA/artifacts/public/build/target.mozinfo.json b/tests/mock-queue/v1/task/WMHJbRaXSi6WXnuVk4fTRA/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 8240f451..00000000 --- a/tests/mock-queue/v1/task/WMHJbRaXSi6WXnuVk4fTRA/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "addon_signing": true, - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 32, - "buildapp": "browser", - "buildtype_guess": "debug", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": true, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": true, - "os": "linux", - "pgo": false, - "platform_guess": "linux", - "processor": "x86", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk3", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-queue/v1/task/WSKwsLgmQXCXWCd1UdWz7Q/artifacts/.get b/tests/mock-queue/v1/task/WSKwsLgmQXCXWCd1UdWz7Q/artifacts/.get deleted file mode 100644 index 401b6e0b..00000000 --- a/tests/mock-queue/v1/task/WSKwsLgmQXCXWCd1UdWz7Q/artifacts/.get +++ /dev/null @@ -1,238 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.zip", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.zip", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.zip", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.zip", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.zip", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.zip", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.stylo-bindings.zip", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.zip", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.zip", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/logs/log_critical.log", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_debug.log", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_error.log", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_fatal.log", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_info.log", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_raw.log", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_warning.log", - "expires": "2020-10-13T13:17:44.986Z", - "contentType": "text/plain" - } - ] -} \ No newline at end of file diff --git a/tests/mock-queue/v1/task/WSKwsLgmQXCXWCd1UdWz7Q/artifacts/public/build/target.json b/tests/mock-queue/v1/task/WSKwsLgmQXCXWCd1UdWz7Q/artifacts/public/build/target.json deleted file mode 100644 index a85f3f93..00000000 --- a/tests/mock-queue/v1/task/WSKwsLgmQXCXWCd1UdWz7Q/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "$(CC)", - "buildid": "20191014131614", - "cc": "/builds/worker/workspace/build/src/clang/bin/clang -fgnu89-inline -B /builds/worker/workspace/build/src/gcc/bin -std=gnu99", - "cxx": "/builds/worker/workspace/build/src/clang/bin/clang++ -B /builds/worker/workspace/build/src/gcc/bin -std=gnu++14", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "60.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "60.9.1", - "moz_pkg_platform": "linux-x86_64-asan", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr60", - "moz_source_stamp": "e67641c2e4ccd1fe2d4cd522b6575adec838697a", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-queue/v1/task/WSKwsLgmQXCXWCd1UdWz7Q/artifacts/public/build/target.mozinfo.json b/tests/mock-queue/v1/task/WSKwsLgmQXCXWCd1UdWz7Q/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 5db025c7..00000000 --- a/tests/mock-queue/v1/task/WSKwsLgmQXCXWCd1UdWz7Q/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "addon_signing": true, - "allow_legacy_extensions": true, - "appname": "firefox", - "artifact": false, - "asan": true, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "ccov": false, - "crashreporter": false, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": false, - "os": "linux", - "pgo": false, - "platform_guess": "linux64-asan", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk3", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-queue/v1/task/Wp5v7gouSqSGc0OF3fDbJA/artifacts/.get b/tests/mock-queue/v1/task/Wp5v7gouSqSGc0OF3fDbJA/artifacts/.get deleted file mode 100644 index 6aee402f..00000000 --- a/tests/mock-queue/v1/task/Wp5v7gouSqSGc0OF3fDbJA/artifacts/.get +++ /dev/null @@ -1,250 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.zip", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.zip", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.zip", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.zip", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.zip", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.zip", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.stylo-bindings.zip", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.zip", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.zip", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/logs/log_critical.log", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_debug.log", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_error.log", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_fatal.log", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_info.log", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_raw.log", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_warning.log", - "expires": "2020-10-13T13:17:44.974Z", - "contentType": "text/plain" - } - ] -} \ No newline at end of file diff --git a/tests/mock-queue/v1/task/Wp5v7gouSqSGc0OF3fDbJA/artifacts/public/build/target.json b/tests/mock-queue/v1/task/Wp5v7gouSqSGc0OF3fDbJA/artifacts/public/build/target.json deleted file mode 100644 index b50a4a26..00000000 --- a/tests/mock-queue/v1/task/Wp5v7gouSqSGc0OF3fDbJA/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "$(CC)", - "buildid": "20191014131614", - "cc": "/builds/worker/workspace/build/src/gcc/bin/gcc -std=gnu99", - "cxx": "/builds/worker/workspace/build/src/gcc/bin/g++", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "60.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "60.9.1", - "moz_pkg_platform": "linux-x86_64", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr60", - "moz_source_stamp": "e67641c2e4ccd1fe2d4cd522b6575adec838697a", - "moz_update_channel": "default", - "target_alias": "x86_64-pc-linux-gnu", - "target_cpu": "x86_64", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-queue/v1/task/Wp5v7gouSqSGc0OF3fDbJA/artifacts/public/build/target.mozinfo.json b/tests/mock-queue/v1/task/Wp5v7gouSqSGc0OF3fDbJA/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 817139ca..00000000 --- a/tests/mock-queue/v1/task/Wp5v7gouSqSGc0OF3fDbJA/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "addon_signing": true, - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "pgo", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": true, - "os": "linux", - "pgo": true, - "platform_guess": "linux64", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk3", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-queue/v1/task/ZIUtxeA1TYmvBJLmA0YRZw/artifacts/.get b/tests/mock-queue/v1/task/ZIUtxeA1TYmvBJLmA0YRZw/artifacts/.get deleted file mode 100644 index eb1604e0..00000000 --- a/tests/mock-queue/v1/task/ZIUtxeA1TYmvBJLmA0YRZw/artifacts/.get +++ /dev/null @@ -1,250 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.zip", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.zip", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.zip", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.zip", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.zip", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.zip", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.stylo-bindings.zip", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.zip", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.tar.bz2", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/x-bzip2" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.zip", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/xvfb/xvfb.log", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/logs/log_critical.log", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_debug.log", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_error.log", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_fatal.log", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_info.log", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_raw.log", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_warning.log", - "expires": "2020-10-13T13:17:44.980Z", - "contentType": "text/plain" - } - ] -} \ No newline at end of file diff --git a/tests/mock-queue/v1/task/ZIUtxeA1TYmvBJLmA0YRZw/artifacts/public/build/target.json b/tests/mock-queue/v1/task/ZIUtxeA1TYmvBJLmA0YRZw/artifacts/public/build/target.json deleted file mode 100644 index 3ea93bf0..00000000 --- a/tests/mock-queue/v1/task/ZIUtxeA1TYmvBJLmA0YRZw/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "$(CC)", - "buildid": "20191014131614", - "cc": "/builds/worker/workspace/build/src/gcc/bin/gcc -m32 -march=pentium-m -std=gnu99", - "cxx": "/builds/worker/workspace/build/src/gcc/bin/g++ -m32 -march=pentium-m", - "host_alias": "i686-pc-linux-gnu", - "host_cpu": "i686", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "60.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "60.9.1", - "moz_pkg_platform": "linux-i686", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr60", - "moz_source_stamp": "e67641c2e4ccd1fe2d4cd522b6575adec838697a", - "moz_update_channel": "default", - "target_alias": "i686-pc-linux-gnu", - "target_cpu": "i686", - "target_os": "linux-gnu", - "target_vendor": "pc" -} diff --git a/tests/mock-queue/v1/task/ZIUtxeA1TYmvBJLmA0YRZw/artifacts/public/build/target.mozinfo.json b/tests/mock-queue/v1/task/ZIUtxeA1TYmvBJLmA0YRZw/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index a61ba5c8..00000000 --- a/tests/mock-queue/v1/task/ZIUtxeA1TYmvBJLmA0YRZw/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "addon_signing": true, - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 32, - "buildapp": "browser", - "buildtype_guess": "pgo", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": true, - "os": "linux", - "pgo": true, - "platform_guess": "linux", - "processor": "x86", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "gtk3", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/mock-queue/v1/task/eYMhAWGmSpKLp4UmN7eVyg/artifacts/.get b/tests/mock-queue/v1/task/eYMhAWGmSpKLp4UmN7eVyg/artifacts/.get deleted file mode 100644 index a1e08e33..00000000 --- a/tests/mock-queue/v1/task/eYMhAWGmSpKLp4UmN7eVyg/artifacts/.get +++ /dev/null @@ -1,244 +0,0 @@ -{ - "artifacts": [ - { - "storageType": "s3", - "name": "public/build/buildhub.json", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mar", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/host/bin/mbsdiff", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/mozharness.zip", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.awsy.tests.zip", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.checksums", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.common.tests.zip", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.cppunittest.tests.zip", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols-full.zip", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.crashreporter-symbols.zip", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.dmg", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/build/target.generated-files.tar.gz", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.gtest.tests.zip", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.json", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.jsshell.zip", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.langpack.xpi", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/x-xpinstall" - }, - { - "storageType": "s3", - "name": "public/build/target.mochitest.tests.zip", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.mozinfo.json", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.reftest.tests.zip", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.stylo-bindings.zip", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.talos.tests.zip", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target.test_packages.json", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/build/target.txt", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/target.web-platform.tests.tar.gz", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/gzip" - }, - { - "storageType": "s3", - "name": "public/build/target.xpcshell.tests.zip", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/zip" - }, - { - "storageType": "s3", - "name": "public/build/target_info.txt", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/build/toolchains.json", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/chain-of-trust.json.sig", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/octet-stream" - }, - { - "storageType": "s3", - "name": "public/logs/certified.log", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "text/plain" - }, - { - "storageType": "reference", - "name": "public/logs/live.log", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/live_backing.log", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "text/plain; charset=utf-8" - }, - { - "storageType": "s3", - "name": "public/logs/localconfig.json", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "application/json" - }, - { - "storageType": "s3", - "name": "public/logs/log_critical.log", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_debug.log", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_error.log", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_fatal.log", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_info.log", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_raw.log", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "text/plain" - }, - { - "storageType": "s3", - "name": "public/logs/log_warning.log", - "expires": "2020-10-13T13:17:44.970Z", - "contentType": "text/plain" - } - ] -} \ No newline at end of file diff --git a/tests/mock-queue/v1/task/eYMhAWGmSpKLp4UmN7eVyg/artifacts/public/build/target.json b/tests/mock-queue/v1/task/eYMhAWGmSpKLp4UmN7eVyg/artifacts/public/build/target.json deleted file mode 100644 index e27509e7..00000000 --- a/tests/mock-queue/v1/task/eYMhAWGmSpKLp4UmN7eVyg/artifacts/public/build/target.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "as": "$(CC)", - "buildid": "20191014131614", - "cc": "/builds/worker/workspace/build/src/clang/bin/clang -target x86_64-apple-darwin11 -B /builds/worker/workspace/build/src/cctools/bin -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu99", - "cxx": "/builds/worker/workspace/build/src/clang/bin/clang++ -target x86_64-apple-darwin11 -B /builds/worker/workspace/build/src/cctools/bin -isysroot /builds/worker/workspace/build/src/MacOSX10.11.sdk -std=gnu++14", - "host_alias": "x86_64-pc-linux-gnu", - "host_cpu": "x86_64", - "host_os": "linux-gnu", - "host_vendor": "pc", - "moz_app_id": "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}", - "moz_app_maxversion": "60.*", - "moz_app_name": "firefox", - "moz_app_vendor": "Mozilla", - "moz_app_version": "60.9.1", - "moz_pkg_platform": "mac", - "moz_source_repo": "https://hg.mozilla.org/releases/mozilla-esr60", - "moz_source_stamp": "e67641c2e4ccd1fe2d4cd522b6575adec838697a", - "moz_update_channel": "default", - "target_alias": "x86_64-apple-darwin", - "target_cpu": "x86_64", - "target_os": "darwin", - "target_vendor": "apple" -} diff --git a/tests/mock-queue/v1/task/eYMhAWGmSpKLp4UmN7eVyg/artifacts/public/build/target.mozinfo.json b/tests/mock-queue/v1/task/eYMhAWGmSpKLp4UmN7eVyg/artifacts/public/build/target.mozinfo.json deleted file mode 100644 index 70057b7d..00000000 --- a/tests/mock-queue/v1/task/eYMhAWGmSpKLp4UmN7eVyg/artifacts/public/build/target.mozinfo.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "addon_signing": true, - "allow_legacy_extensions": false, - "appname": "firefox", - "artifact": false, - "asan": false, - "bin_suffix": "", - "bits": 64, - "buildapp": "browser", - "buildtype_guess": "opt", - "ccov": false, - "crashreporter": true, - "datareporting": true, - "debug": false, - "devedition": false, - "healthreport": true, - "mozconfig": "/builds/worker/workspace/build/src/.mozconfig", - "nightly_build": false, - "official": true, - "os": "mac", - "pgo": false, - "platform_guess": "macosx64", - "processor": "x86_64", - "release_or_beta": true, - "require_signing": false, - "stylo": true, - "sync": true, - "telemetry": false, - "tests_enabled": true, - "toolkit": "cocoa", - "topsrcdir": "/builds/worker/workspace/build/src", - "tsan": false, - "ubsan": false, - "updater": true -} \ No newline at end of file diff --git a/tests/test_fetch.py b/tests/test_fetch.py index a5bbc13a..60b27089 100644 --- a/tests/test_fetch.py +++ b/tests/test_fetch.py @@ -91,12 +91,10 @@ def get_builds_to_test(): continue if os_ == "Android" and branch in {'esr-next', 'esr-stable'}: continue - if branch == "esr-next": - opt = not (flags.asan or flags.fuzzing or flags.debug or flags.coverage or flags.valgrind) - if opt: - # opt builds aren't available for esr68 - continue - elif branch == "esr-stable": + if not all(flags) and branch.startswith("esr"): + # opt builds aren't available for esr + continue + if branch == "esr-stable": if cpu.startswith("arm"): # arm builds aren't available for esr-stable continue @@ -118,10 +116,8 @@ def test_metadata(branch, build_flags, os_, cpu): args = ["--" + name for arg, name in zip(build_flags, fuzzfetch.BuildFlags._fields) if arg] fetcher = fuzzfetch.Fetcher.from_args(["--" + branch, '--cpu', cpu, '--os', os_] + args)[0] else: - if branch == "esr-next": - branch = "esr68" - elif branch == "esr-stable": - branch = "esr60" + if branch.startswith("esr"): + branch = fuzzfetch.Fetcher.resolve_esr(branch) fetcher = fuzzfetch.Fetcher("firefox", branch, "latest", build_flags, platform_) LOG.debug("succeeded creating Fetcher") LOG.debug("buildid: %s", fetcher.id) @@ -153,40 +149,36 @@ def test_metadata(branch, build_flags, os_, cpu): # - requested should be set to the near future, or the hg hash of a changeset prior to the first build yesterday # - expected should be updated to the value that asserts @pytest.mark.parametrize('requested, expected', ( - ('2019-11-15', '2019-11-13'), - ('4b3eacb45a38a33175976e7d76d1651334f52d82', '5f0b392beadb7300abdaa3e5e1cc1c0d5a9f0791'))) + ('2019-11-06', '2019-11-07'), + ('d271c572a9bcd008ed14bf104b2eb81949952e4c', 'e8b7c48d4e7ed1b63aeedff379b51e566ea499d9'))) +@pytest.mark.parametrize('is_namespace', [True, False]) @pytest.mark.usefixtures("requests_mock_cache") -def test_nearest_retrieval(requested, expected): +def test_nearest_retrieval(requested, expected, is_namespace): """ Attempt to retrieve a build near the supplied build_id """ flags = fuzzfetch.BuildFlags(asan=False, tsan=False, debug=False, fuzzing=False, coverage=False, valgrind=False) - # skip revisions for now. - if fuzzfetch.BuildTask.RE_REV.match(requested): - pytest.skip("see: https://github.com/MozillaSecurity/fuzzfetch/issues/52") - # Set freeze_time to a date ahead of the latest mock build with freeze_time('2019-12-01'): - direction = fuzzfetch.Fetcher.BUILD_ORDER_DESC - - for is_namespace in (True, False): - if is_namespace: - if fuzzfetch.BuildTask.RE_DATE.match(requested): - date = requested.replace('-', '.') - build_id = 'gecko.v2.mozilla-central.pushdate.%s.firefox.linux64-opt' % date - else: - build_id = 'gecko.v2.mozilla-central.revision.%s.firefox.linux64-opt' % requested - else: - build_id = requested + direction = fuzzfetch.Fetcher.BUILD_ORDER_ASC - build = fuzzfetch.Fetcher('firefox', 'central', build_id, flags, nearest=direction) - if fuzzfetch.BuildTask.RE_DATE.match(expected): - build_date = datetime.strftime(build.datetime, '%Y-%m-%d') - assert build_date == expected + if is_namespace: + if fuzzfetch.BuildTask.RE_DATE.match(requested): + date = requested.replace('-', '.') + build_id = 'gecko.v2.mozilla-central.pushdate.%s.firefox.linux64-opt' % date else: - assert fuzzfetch.BuildTask.RE_REV.match(expected) - assert build.changeset == expected + build_id = 'gecko.v2.mozilla-central.revision.%s.firefox.linux64-opt' % requested + else: + build_id = requested + + build = fuzzfetch.Fetcher('firefox', 'central', build_id, flags, nearest=direction) + if fuzzfetch.BuildTask.RE_DATE.match(expected): + build_date = datetime.strftime(build.datetime, '%Y-%m-%d') + assert build_date == expected + else: + assert fuzzfetch.BuildTask.RE_REV.match(expected) + assert build.changeset == expected @pytest.mark.usefixtures("requests_mock_cache")