Commit 5083892c authored by Roberto Carrillo's avatar Roberto Carrillo Committed by Commit Bot

Temporarily disable test results export to GPU-try bq tables

TBR=nodir,bsheedy,vadimsh,gbeaty

Bug: 1145735
Change-Id: Id7921fbacb0fedfd3500fd86953173fa63eb80b5
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2518699Reviewed-by: default avatarRoberto Carrillo <robertocn@chromium.org>
Reviewed-by: default avatarBrian Sheedy <bsheedy@chromium.org>
Commit-Queue: Roberto Carrillo <robertocn@chromium.org>
Cr-Commit-Position: refs/heads/master@{#824198}
parent 009c1924
This diff is collapsed.
......@@ -416,22 +416,12 @@ def chromium_win_builder(
**kwargs
)
gpu_try_resultdb_exports = [
resultdb.export_test_results(
bq_table = "luci-resultdb.chromium.gpu_try_test_results",
predicate = resultdb.test_result_predicate(
test_id_regexp = "ninja://chrome/test:telemetry_gpu_integration_test/.+",
),
),
]
def gpu_try_builder(*, name, builderless = False, execution_timeout = 6 * time.hour, **kwargs):
return try_builder(
name = name,
builderless = builderless,
execution_timeout = execution_timeout,
service_account = "chromium-try-gpu-builder@chops-service-accounts.iam.gserviceaccount.com",
resultdb_bigquery_exports = gpu_try_resultdb_exports,
**kwargs
)
......@@ -500,5 +490,4 @@ try_ = struct(
gpu_chromium_linux_builder = gpu_chromium_linux_builder,
gpu_chromium_mac_builder = gpu_chromium_mac_builder,
gpu_chromium_win_builder = gpu_chromium_win_builder,
gpu_try_resultdb_exports = gpu_try_resultdb_exports,
)
......@@ -30,7 +30,6 @@ try_.defaults.set(
subproject_list_view = "luci.chromium.try",
swarming_tags = ["vpython:native-python-wrapper"],
task_template_canary_percentage = 5,
resultdb_bigquery_exports = try_.gpu_try_resultdb_exports,
)
# Builders appear after the function used to define them, with all builders
......
......@@ -336,8 +336,6 @@ try_.chromium_android_builder(
ssd = True,
use_java_coverage = True,
tryjob = try_.job(),
# Due to mirroring chromium.gpu's "Android Release (Nexus 5X)".
resultdb_bigquery_exports = try_.gpu_try_resultdb_exports,
)
try_.chromium_android_builder(
......@@ -933,8 +931,6 @@ try_.chromium_linux_builder(
try_.chromium_linux_builder(
name = "linux-dcheck-off-rel",
# Due to mirroring chromium.gpu's "Linux Release (NVIDIA)".
resultdb_bigquery_exports = try_.gpu_try_resultdb_exports,
)
try_.chromium_linux_builder(
......@@ -994,8 +990,6 @@ try_.chromium_linux_builder(
main_list_view = "try",
tryjob = try_.job(),
use_clang_coverage = True,
# Due to mirroring chromium.gpu's "Linux Release (NVIDIA)".
resultdb_bigquery_exports = try_.gpu_try_resultdb_exports,
)
try_.chromium_linux_builder(
......@@ -1004,8 +998,6 @@ try_.chromium_linux_builder(
goma_jobs = goma.jobs.J150,
tryjob = try_.job(experiment_percentage = 10),
use_clang_coverage = True,
# Due to mirroring chromium.gpu's "Linux Release (NVIDIA)".
resultdb_bigquery_exports = try_.gpu_try_resultdb_exports,
)
try_.chromium_linux_builder(
......@@ -1216,9 +1208,6 @@ try_.chromium_mac_builder(
main_list_view = "try",
os = os.MAC_DEFAULT,
tryjob = try_.job(),
# Due to mirroring chromium.gpu's "Mac Release (Intel)" and
# "Mac Retina Release (AMD)".
resultdb_bigquery_exports = try_.gpu_try_resultdb_exports,
)
try_.chromium_mac_builder(
......@@ -1489,8 +1478,6 @@ try_.chromium_win_builder(
# of stale tryjobs gracefully, resulting in longer average build times.
# Windows is particularly susceptible to this.
tryjob = try_.job(cancel_stale = False),
# Due to mirroring chromium.gpu's "Win10 x64 Release (NVIDIA)".
resultdb_bigquery_exports = try_.gpu_try_resultdb_exports,
)
try_.chromium_win_builder(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment