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

Unified Diff: PRESUBMIT.py

Issue 10827137: Add linux_chromeos and linux_chromeos_clang as preferred try bots whenever chromeos files are modif… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/chromeos/PRESUBMIT.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: PRESUBMIT.py
diff --git a/PRESUBMIT.py b/PRESUBMIT.py
index 05fd28b2cc1ea9b9a981bb69102e9f394c5e3134..4195f5ab79781febb69d040698cb80a20499d960 100644
--- a/PRESUBMIT.py
+++ b/PRESUBMIT.py
@@ -565,8 +565,10 @@ def GetPreferredTrySlaves(project, change):
trybots = ['win_rel', 'linux_rel', 'mac_rel', 'linux_clang:compile',
'android']
- # match things like aurax11.cc or aura_oak.cc
- if any(re.search('[/_]aura', f) for f in files):
- trybots.append('linux_chromeos')
+
+ # 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']
return trybots
« no previous file with comments | « no previous file | chrome/browser/chromeos/PRESUBMIT.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698