Commit 0be9553a authored by saintlou@chromium.org's avatar saintlou@chromium.org

Over the last week (or so) a couple of CLs had to be reverted because...

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
parent cf5f1a6f
...@@ -592,8 +592,11 @@ def GetPreferredTrySlaves(project, change): ...@@ -592,8 +592,11 @@ def GetPreferredTrySlaves(project, change):
'android'] 'android']
# Match things like path/aura/file.cc and path/file_aura.cc. # Match things like path/aura/file.cc and path/file_aura.cc.
# Same for chromeos. # Same for ash and chromeos.
if any(re.search('[/_](aura|chromeos)', f) for f in files): if any(re.search('[/_](ash|aura)', f) for f in files):
trybots += ['linux_chromeos', 'linux_chromeos_clang:compile'] 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 return trybots
...@@ -9,4 +9,4 @@ for more details on the presubmit API built into gcl. ...@@ -9,4 +9,4 @@ for more details on the presubmit API built into gcl.
""" """
def GetPreferredTrySlaves(): 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. ...@@ -9,4 +9,4 @@ for more details on the presubmit API built into gcl.
""" """
def GetPreferredTrySlaves(): 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. ...@@ -9,4 +9,4 @@ for more details on the presubmit API built into gcl.
""" """
def GetPreferredTrySlaves(): def GetPreferredTrySlaves():
return ['linux_chromeos'] return ['linux_chromeos', 'win_aura']
...@@ -9,4 +9,4 @@ for more details on the presubmit API built into gcl. ...@@ -9,4 +9,4 @@ for more details on the presubmit API built into gcl.
""" """
def GetPreferredTrySlaves(): def GetPreferredTrySlaves():
return ['linux_chromeos'] return ['linux_chromeos', 'win_aura']
...@@ -9,4 +9,4 @@ for more details on the presubmit API built into gcl. ...@@ -9,4 +9,4 @@ for more details on the presubmit API built into gcl.
""" """
def GetPreferredTrySlaves(): def GetPreferredTrySlaves():
return ['linux_chromeos'] return ['linux_chromeos', 'win_aura']
...@@ -9,4 +9,4 @@ for more details on the presubmit API built into gcl. ...@@ -9,4 +9,4 @@ for more details on the presubmit API built into gcl.
""" """
def GetPreferredTrySlaves(): def GetPreferredTrySlaves():
return ['linux_chromeos'] return ['linux_chromeos', 'win_aura']
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment