| 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',
|
|
|