Over the last week (or so) a couple of CLs had to be reverted because developers had not tested win_aura, specifically:
1. The default trybot rules don't include win_aura in enough cases 2. The CQ did not build win_aura BUG=141701 TBR=sky Review URL: https://chromiumcodereview.appspot.com/10831242 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150950 0039d316-1c4b-4281-b951-d872f2087c98
This commit is contained in:
@ -592,8 +592,11 @@ def GetPreferredTrySlaves(project, change):
|
||||
'android']
|
||||
|
||||
# Match things like path/aura/file.cc and path/file_aura.cc.
|
||||
# Same for chromeos.
|
||||
if any(re.search('[/_](aura|chromeos)', f) for f in files):
|
||||
trybots += ['linux_chromeos', 'linux_chromeos_clang:compile']
|
||||
# Same for ash and chromeos.
|
||||
if any(re.search('[/_](ash|aura)', f) for f in files):
|
||||
trybots += ['linux_chromeos', 'linux_chromeos_clang:compile', 'win_aura']
|
||||
else:
|
||||
if any(re.search('[/_]chromeos', f) for f in files):
|
||||
trybots += ['linux_chromeos', 'linux_chromeos_clang:compile']
|
||||
|
||||
return trybots
|
||||
|
@ -9,4 +9,4 @@ for more details on the presubmit API built into gcl.
|
||||
"""
|
||||
|
||||
def GetPreferredTrySlaves():
|
||||
return ['linux_chromeos', 'linux_chromeos_clang']
|
||||
return ['linux_chromeos', 'linux_chromeos_clang', 'win_aura']
|
||||
|
@ -9,4 +9,4 @@ for more details on the presubmit API built into gcl.
|
||||
"""
|
||||
|
||||
def GetPreferredTrySlaves():
|
||||
return ['linux_chromeos', 'linux_aura']
|
||||
return ['linux_chromeos', 'linux_aura', 'win_aura']
|
||||
|
@ -9,4 +9,4 @@ for more details on the presubmit API built into gcl.
|
||||
"""
|
||||
|
||||
def GetPreferredTrySlaves():
|
||||
return ['linux_chromeos']
|
||||
return ['linux_chromeos', 'win_aura']
|
||||
|
@ -9,4 +9,4 @@ for more details on the presubmit API built into gcl.
|
||||
"""
|
||||
|
||||
def GetPreferredTrySlaves():
|
||||
return ['linux_chromeos']
|
||||
return ['linux_chromeos', 'win_aura']
|
||||
|
@ -9,4 +9,4 @@ for more details on the presubmit API built into gcl.
|
||||
"""
|
||||
|
||||
def GetPreferredTrySlaves():
|
||||
return ['linux_chromeos']
|
||||
return ['linux_chromeos', 'win_aura']
|
||||
|
@ -9,4 +9,4 @@ for more details on the presubmit API built into gcl.
|
||||
"""
|
||||
|
||||
def GetPreferredTrySlaves():
|
||||
return ['linux_chromeos']
|
||||
return ['linux_chromeos', 'win_aura']
|
||||
|
Reference in New Issue
Block a user