Add a few more configs to try jobs to match CQ (win:compile, mac:compile).
Review URL: https://codereview.chromium.org/12328039 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@183833 0039d316-1c4b-4281-b951-d872f2087c98
This commit is contained in:
@ -844,9 +844,9 @@ def GetPreferredTrySlaves(project, change):
|
||||
return []
|
||||
|
||||
if all(re.search('\.(m|mm)$|(^|[/_])mac[/_.]', f) for f in files):
|
||||
return ['mac_rel', 'mac_asan']
|
||||
return ['mac_rel', 'mac_asan', 'mac:compile']
|
||||
if all(re.search('(^|[/_])win[/_.]', f) for f in files):
|
||||
return ['win_rel']
|
||||
return ['win_rel', 'win7_aura', 'win:compile']
|
||||
if all(re.search('(^|[/_])android[/_.]', f) for f in files):
|
||||
return ['android_dbg', 'android_clang_dbg']
|
||||
if all(re.search('^native_client_sdk', f) for f in files):
|
||||
@ -866,8 +866,10 @@ def GetPreferredTrySlaves(project, change):
|
||||
'linux_rel',
|
||||
'mac_asan',
|
||||
'mac_rel',
|
||||
'mac:compile',
|
||||
'win7_aura',
|
||||
'win_rel',
|
||||
'win:compile',
|
||||
]
|
||||
|
||||
# Match things like path/aura/file.cc and path/file_aura.cc.
|
||||
|
Reference in New Issue
Block a user