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

Side by Side Diff: infra/bots/recipes/swarm_trigger.py

Issue 2382313003: Stop uploading nanobench results on Valgrind bot (Closed)
Patch Set: Created 4 years, 2 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 unified diff | Download patch
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 5
6 # Recipe module for Skia Swarming trigger. 6 # Recipe module for Skia Swarming trigger.
7 7
8 8
9 import os 9 import os
10 import json 10 import json
(...skipping 30 matching lines...) Expand all
41 'Build-Ubuntu-GCC-x86_64-Debug-GN', 41 'Build-Ubuntu-GCC-x86_64-Debug-GN',
42 'Build-Ubuntu-GCC-x86_64-Release-RemoteRun', 42 'Build-Ubuntu-GCC-x86_64-Release-RemoteRun',
43 'Build-Ubuntu-GCC-x86_64-Release-Trybot', 43 'Build-Ubuntu-GCC-x86_64-Release-Trybot',
44 'Build-Win-MSVC-x86_64-Release', 44 'Build-Win-MSVC-x86_64-Release',
45 'Build-Win-MSVC-x86_64-Release-Vulkan', 45 'Build-Win-MSVC-x86_64-Release-Vulkan',
46 'Housekeeper-Nightly-RecreateSKPs_Canary', 46 'Housekeeper-Nightly-RecreateSKPs_Canary',
47 'Housekeeper-PerCommit', 47 'Housekeeper-PerCommit',
48 'Infra-PerCommit', 48 'Infra-PerCommit',
49 'Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Trybot', 49 'Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Trybot',
50 'Perf-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Release-CT_BENCH_1k_SKPs', 50 'Perf-Ubuntu-GCC-Golo-GPU-GT610-x86_64-Release-CT_BENCH_1k_SKPs',
51 'Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind',
51 'Test-Android-Clang-AndroidOne-CPU-MT6582-arm-Debug-GN_Android', 52 'Test-Android-Clang-AndroidOne-CPU-MT6582-arm-Debug-GN_Android',
52 'Test-Android-GCC-NVIDIA_Shield-GPU-TegraX1-Arm64-Debug-Vulkan', 53 'Test-Android-GCC-NVIDIA_Shield-GPU-TegraX1-Arm64-Debug-Vulkan',
53 'Test-Android-GCC-Nexus7v2-GPU-Tegra3-Arm7-Release', 54 'Test-Android-GCC-Nexus7v2-GPU-Tegra3-Arm7-Release',
54 'Test-Mac-Clang-MacMini6.2-CPU-AVX-x86_64-Release', 55 'Test-Mac-Clang-MacMini6.2-CPU-AVX-x86_64-Release',
55 'Test-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-Coverage-Trybot', 56 'Test-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-Coverage-Trybot',
56 'Test-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-Debug-MSAN', 57 'Test-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-Debug-MSAN',
57 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug', 58 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Debug',
58 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Shared', 59 'Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Shared',
59 'Test-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind', 60 'Test-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind',
60 'Test-Win8-MSVC-ShuttleA-GPU-HD7770-x86_64-Release', 61 'Test-Win8-MSVC-ShuttleA-GPU-HD7770-x86_64-Release',
(...skipping 626 matching lines...) Expand 10 before | Expand all | Expand 10 after
687 'upload new .isolated file for test_skia', 688 'upload new .isolated file for test_skia',
688 stdout=api.raw_io.output('def456 XYZ.isolated')) 689 stdout=api.raw_io.output('def456 XYZ.isolated'))
689 if not 'Valgrind' in builder and not 'MSAN' in builder: 690 if not 'Valgrind' in builder and not 'MSAN' in builder:
690 test += api.step_data( 691 test += api.step_data(
691 'upload new .isolated file for upload_dm_results_skia', 692 'upload new .isolated file for upload_dm_results_skia',
692 stdout=api.raw_io.output('def456 XYZ.isolated')) 693 stdout=api.raw_io.output('def456 XYZ.isolated'))
693 if 'Perf' in builder and '-CT_' not in builder: 694 if 'Perf' in builder and '-CT_' not in builder:
694 test += api.step_data( 695 test += api.step_data(
695 'upload new .isolated file for perf_skia', 696 'upload new .isolated file for perf_skia',
696 stdout=api.raw_io.output('def456 XYZ.isolated')) 697 stdout=api.raw_io.output('def456 XYZ.isolated'))
697 test += api.step_data( 698 if 'Valgrind' not in builder:
698 'upload new .isolated file for upload_nano_results_skia', 699 test += api.step_data(
699 stdout=api.raw_io.output('def456 XYZ.isolated')) 700 'upload new .isolated file for upload_nano_results_skia',
701 stdout=api.raw_io.output('def456 XYZ.isolated'))
700 if 'Housekeeper' in builder and 'RecreateSKPs' not in builder: 702 if 'Housekeeper' in builder and 'RecreateSKPs' not in builder:
701 test += api.step_data( 703 test += api.step_data(
702 'upload new .isolated file for housekeeper_skia', 704 'upload new .isolated file for housekeeper_skia',
703 stdout=api.raw_io.output('def456 XYZ.isolated')) 705 stdout=api.raw_io.output('def456 XYZ.isolated'))
704 if 'Win' in builder: 706 if 'Win' in builder:
705 paths.append(api.path['slave_build'].join( 707 paths.append(api.path['slave_build'].join(
706 'skia', 'infra', 'bots', 'assets', 'win_toolchain', 'VERSION')) 708 'skia', 'infra', 'bots', 'assets', 'win_toolchain', 'VERSION'))
707 paths.append(api.path['slave_build'].join( 709 paths.append(api.path['slave_build'].join(
708 'skia', 'infra', 'bots', 'assets', 'win_vulkan_sdk', 'VERSION')) 710 'skia', 'infra', 'bots', 'assets', 'win_vulkan_sdk', 'VERSION'))
709 paths.append(api.path['slave_build'].join( 711 paths.append(api.path['slave_build'].join(
(...skipping 30 matching lines...) Expand all
740 path_config='kitchen', 742 path_config='kitchen',
741 revision='abc123', 743 revision='abc123',
742 **gerrit_kwargs) + 744 **gerrit_kwargs) +
743 api.step_data( 745 api.step_data(
744 'upload new .isolated file for test_skia', 746 'upload new .isolated file for test_skia',
745 stdout=api.raw_io.output('def456 XYZ.isolated')) + 747 stdout=api.raw_io.output('def456 XYZ.isolated')) +
746 api.step_data( 748 api.step_data(
747 'upload new .isolated file for upload_dm_results_skia', 749 'upload new .isolated file for upload_dm_results_skia',
748 stdout=api.raw_io.output('def456 XYZ.isolated')) 750 stdout=api.raw_io.output('def456 XYZ.isolated'))
749 ) 751 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698