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

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

Issue 2189713003: recipes: Add a GN flavor. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fix Created 4 years, 4 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 json 9 import json
10 10
(...skipping 16 matching lines...) Expand all
27 27
28 28
29 TEST_BUILDERS = { 29 TEST_BUILDERS = {
30 'client.skia': { 30 'client.skia': {
31 'skiabot-linux-swarm-000': [ 31 'skiabot-linux-swarm-000': [
32 'Test-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind', 32 'Test-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-Valgrind',
33 'Test-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-Coverage-Trybot', 33 'Test-Ubuntu-Clang-GCE-CPU-AVX2-x86_64-Coverage-Trybot',
34 'Build-Mac-Clang-x86_64-Release', 34 'Build-Mac-Clang-x86_64-Release',
35 'Build-Ubuntu-GCC-Arm64-Debug-Android_Vulkan', 35 'Build-Ubuntu-GCC-Arm64-Debug-Android_Vulkan',
36 'Build-Ubuntu-GCC-x86_64-Debug', 36 'Build-Ubuntu-GCC-x86_64-Debug',
37 'Build-Ubuntu-GCC-x86_64-Debug-GN',
37 'Build-Ubuntu-GCC-x86_64-Release-RemoteRun', 38 'Build-Ubuntu-GCC-x86_64-Release-RemoteRun',
38 'Build-Ubuntu-GCC-x86_64-Release-Trybot', 39 'Build-Ubuntu-GCC-x86_64-Release-Trybot',
39 'Build-Win-MSVC-x86_64-Release', 40 'Build-Win-MSVC-x86_64-Release',
40 'Build-Win-MSVC-x86_64-Release-Vulkan', 41 'Build-Win-MSVC-x86_64-Release-Vulkan',
41 'Housekeeper-PerCommit', 42 'Housekeeper-PerCommit',
42 'Housekeeper-Nightly-RecreateSKPs_Canary', 43 'Housekeeper-Nightly-RecreateSKPs_Canary',
43 'Infra-PerCommit', 44 'Infra-PerCommit',
44 'Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Trybot', 45 'Perf-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Trybot',
45 'Test-Android-GCC-Nexus7v2-GPU-Tegra3-Arm7-Release', 46 'Test-Android-GCC-Nexus7v2-GPU-Tegra3-Arm7-Release',
46 'Test-Android-GCC-NVIDIA_Shield-GPU-TegraX1-Arm64-Debug-Vulkan', 47 'Test-Android-GCC-NVIDIA_Shield-GPU-TegraX1-Arm64-Debug-Vulkan',
(...skipping 632 matching lines...) Expand 10 before | Expand all | Expand 10 after
679 test += api.path.exists(*paths) 680 test += api.path.exists(*paths)
680 681
681 return test 682 return test
682 683
683 684
684 def GenTests(api): 685 def GenTests(api):
685 for mastername, slaves in TEST_BUILDERS.iteritems(): 686 for mastername, slaves in TEST_BUILDERS.iteritems():
686 for slavename, builders_by_slave in slaves.iteritems(): 687 for slavename, builders_by_slave in slaves.iteritems():
687 for builder in builders_by_slave: 688 for builder in builders_by_slave:
688 yield test_for_bot(api, builder, mastername, slavename) 689 yield test_for_bot(api, builder, mastername, slavename)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698