mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-23 21:01:08 +00:00
Bug 1877823 - remove treeherder-group attribute. r=gabriel,releng-reviewers
Differential Revision: https://phabricator.services.mozilla.com/D201549
This commit is contained in:
parent
30a2b8db3e
commit
5c9b99af6e
@ -10,13 +10,4 @@ def get_gradle_project(task):
|
||||
shipping_product = attributes.get("shipping-product", "")
|
||||
if shipping_product:
|
||||
return shipping_product
|
||||
|
||||
# TODO: Use only shipping-product attribute instead
|
||||
treeherder_group = attributes.get("treeherder-group", "")
|
||||
if "focus" in treeherder_group:
|
||||
gradle_project = "focus"
|
||||
elif "fenix" in treeherder_group:
|
||||
gradle_project = "fenix"
|
||||
else:
|
||||
gradle_project = None
|
||||
return gradle_project
|
||||
|
@ -42,8 +42,6 @@ def _get_components_tasks(config, for_build_type=None):
|
||||
"attributes": {
|
||||
"build-type": build_type,
|
||||
"component": component["name"],
|
||||
# Treeherder group are capped at 25 chars
|
||||
"treeherder-group": component["name"][:25],
|
||||
}
|
||||
}
|
||||
for component in get_components()
|
||||
@ -61,11 +59,7 @@ def _get_components_tasks(config, for_build_type=None):
|
||||
def _get_apks_tasks(config):
|
||||
not_for_apks = config.get("not-for-apks", [])
|
||||
tasks = {
|
||||
apk["name"]: {
|
||||
"attributes": {
|
||||
"treeherder-group": apk["name"],
|
||||
}
|
||||
}
|
||||
apk["name"]: {}
|
||||
for apk in get_apk_based_projects()
|
||||
if apk["name"] not in not_for_apks
|
||||
}
|
||||
|
@ -76,7 +76,7 @@ def interpolate_missing_values(config, tasks):
|
||||
component=component,
|
||||
nightlyVersion=nightly_version,
|
||||
timestamp=timestamp,
|
||||
treeherder_group=task["attributes"]["treeherder-group"],
|
||||
treeherder_group=component[:25],
|
||||
)
|
||||
|
||||
yield task
|
||||
|
@ -20,7 +20,6 @@ job-defaults:
|
||||
build-type: regular
|
||||
code-review: true
|
||||
component: samples-browser
|
||||
treeherder-group: samples-browser
|
||||
dependencies:
|
||||
build-fat-aar: build-fat-aar-android-geckoview-fat-aar/opt
|
||||
description: Execute Gradle tasks for component "{component}"
|
||||
@ -42,7 +41,7 @@ job-defaults:
|
||||
kind: build
|
||||
platform: AC-android-all/opt
|
||||
tier: 1
|
||||
symbol: '{treeherder_group}(B)'
|
||||
symbol: 'samples-browser(B)'
|
||||
worker-type: b-linux-large-gcp
|
||||
worker:
|
||||
chain-of-trust: true
|
||||
@ -60,7 +59,7 @@ jobs:
|
||||
- ':samples-browser:lintGeckoDebug'
|
||||
|
||||
system:
|
||||
attributes:
|
||||
treeherder-group: samples-browser-system
|
||||
run:
|
||||
gradlew: [':samples-browser:assembleSystem']
|
||||
treeherder:
|
||||
symbol: 'samples-browser-system(B)'
|
||||
|
@ -483,10 +483,6 @@ component
|
||||
=========
|
||||
To do.
|
||||
|
||||
treeherder-group
|
||||
================
|
||||
To do.
|
||||
|
||||
aab
|
||||
===
|
||||
To do.
|
||||
|
Loading…
Reference in New Issue
Block a user