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

Side by Side Diff: PRESUBMIT.py

Issue 2064343002: Add more trybots to the default set. (Closed) Base URL: https://chromium.googlesource.com/libyuv/libyuv@master
Patch Set: Created 4 years, 6 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The LibYuv Project Authors. All rights reserved. 1 # Copyright 2014 The LibYuv Project Authors. All rights reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 import re 9 import re
10 import sys 10 import sys
(...skipping 10 matching lines...) Expand all
21 21
22 # pylint: disable=W0613 22 # pylint: disable=W0613
23 def GetPreferredTryMasters(project, change): 23 def GetPreferredTryMasters(project, change):
24 files = change.LocalPaths() 24 files = change.LocalPaths()
25 bots = [ 25 bots = [
26 'win', 26 'win',
27 'win_rel', 27 'win_rel',
28 'win_x64_rel', 28 'win_x64_rel',
29 'win_x64_gn', 29 'win_x64_gn',
30 'win_x64_gn_rel', 30 'win_x64_gn_rel',
31 'win_clang',
32 'win_clang_rel',
33 'win_x64_clang_rel',
31 'mac', 34 'mac',
32 'mac_rel', 35 'mac_rel',
33 'mac_gn', 36 'mac_gn',
34 'mac_gn_rel', 37 'mac_gn_rel',
35 'mac_asan', 38 'mac_asan',
36 'ios', 39 'ios',
37 'ios_rel', 40 'ios_rel',
38 'ios_arm64', 41 'ios_arm64',
39 'ios_arm64_rel', 42 'ios_arm64_rel',
40 'linux', 43 'linux',
41 'linux_rel', 44 'linux_rel',
42 'linux_gn', 45 'linux_gn',
43 'linux_gn_rel', 46 'linux_gn_rel',
44 'linux_memcheck', 47 'linux_memcheck',
45 'linux_tsan2', 48 'linux_tsan2',
46 'linux_asan', 49 'linux_asan',
47 'linux_msan', 50 'linux_msan',
48 'linux_ubsan', 51 'linux_ubsan',
49 'linux_ubsan_vptr', 52 'linux_ubsan_vptr',
50 'android', 53 'android',
51 'android_rel', 54 'android_rel',
52 'android_clang', 55 'android_clang',
53 'android_arm64', 56 'android_arm64',
57 'android_mips',
58 'android_x64',
59 'android_x86',
54 'android_gn', 60 'android_gn',
55 'android_gn_rel', 61 'android_gn_rel',
56 ] 62 ]
57 if not files or all(re.search(r'[\\/]OWNERS$', f) for f in files): 63 if not files or all(re.search(r'[\\/]OWNERS$', f) for f in files):
58 return {} 64 return {}
59 return GetDefaultTryConfigs(bots) 65 return GetDefaultTryConfigs(bots)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698