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

Unified Diff: PRESUBMIT.py

Issue 461313002: Update presubmit files to send windows tryjobs to swarming bots, now that the CQ has switched over. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 | base/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 392d1d5b0fa4fa0b5f736b63691c8a56c04e36a3..ec9611d2650755e069d769bae7c87023df5f4d9e 100644
--- a/PRESUBMIT.py
+++ b/PRESUBMIT.py
@@ -1524,7 +1524,7 @@ def GetDefaultTryConfigs(bots=None):
'mac_nacl_sdk_build': ['compile'],
'win_chromium_compile_dbg': ['defaulttests'],
'win_chromium_dbg': ['defaulttests'],
- 'win_chromium_rel': ['defaulttests'],
+ 'win_chromium_rel_swarming': ['defaulttests'],
'win_chromium_x64_rel': ['defaulttests'],
'win_gpu': ['defaulttests'],
'win_nacl_sdk_build': ['compile'],
@@ -1577,7 +1577,10 @@ def GetPreferredTryMasters(project, change):
'mac_chromium_rel_swarming',
])
if all(re.search('(^|[/_])win[/_.]', f) for f in files):
- return GetDefaultTryConfigs(['win_chromium_dbg', 'win_chromium_rel'])
+ return GetDefaultTryConfigs([
+ 'win_chromium_dbg',
+ 'win_chromium_rel_swarming',
+ ])
if all(re.search('(^|[/_])android[/_.]', f) for f in files):
return GetDefaultTryConfigs([
'android_aosp',
@@ -1602,7 +1605,7 @@ def GetPreferredTryMasters(project, change):
'mac_chromium_rel_swarming',
'mac_gpu',
'win_chromium_compile_dbg',
- 'win_chromium_rel',
+ 'win_chromium_rel_swarming',
'win_chromium_x64_rel',
'win_gpu',
]
« no previous file with comments | « no previous file | base/PRESUBMIT.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698