Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(463)

Unified Diff: infra/bots/recipes/swarm_trigger.py

Issue 2382313003: Stop uploading nanobench results on Valgrind bot (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: infra/bots/recipes/swarm_trigger.py
diff --git a/infra/bots/recipes/swarm_trigger.py b/infra/bots/recipes/swarm_trigger.py
index 8a9360cd317f933aeff02c0236c73b7cbfb12c2a..98c6a3f4343e9a33c01f0bbde7f6477aa5315047 100644
--- a/infra/bots/recipes/swarm_trigger.py
+++ b/infra/bots/recipes/swarm_trigger.py
@@ -48,6 +48,7 @@ TEST_BUILDERS = {
'Infra-PerCommit',
'Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Trybot',
'Perf-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Release-CT_BENCH_1k_SKPs',
+ 'Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind',
'Test-Android-Clang-AndroidOne-CPU-MT6582-arm-Debug-GN_Android',
'Test-Android-GCC-NVIDIA_Shield-GPU-TegraX1-Arm64-Debug-Vulkan',
'Test-Android-GCC-Nexus7v2-GPU-Tegra3-Arm7-Release',
@@ -694,9 +695,10 @@ def test_for_bot(api, builder, mastername, slavename, testname=None):
test += api.step_data(
'upload new .isolated file for perf_skia',
stdout=api.raw_io.output('def456 XYZ.isolated'))
- test += api.step_data(
- 'upload new .isolated file for upload_nano_results_skia',
- stdout=api.raw_io.output('def456 XYZ.isolated'))
+ if 'Valgrind' not in builder:
+ test += api.step_data(
+ 'upload new .isolated file for upload_nano_results_skia',
+ stdout=api.raw_io.output('def456 XYZ.isolated'))
if 'Housekeeper' in builder and 'RecreateSKPs' not in builder:
test += api.step_data(
'upload new .isolated file for housekeeper_skia',

Powered by Google App Engine
This is Rietveld 408576698