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

Unified Diff: tools/roll_webrtc.py

Issue 1877203008: Add trybots running the sizes step using CQ_EXTRA_TRYBOTS (Closed) Base URL: http://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/roll_webrtc.py
diff --git a/tools/roll_webrtc.py b/tools/roll_webrtc.py
index f016fb39c15ae1b244105319fdae4739cafd0d8c..94f421c8b134f56def229d1d42005b8334c9555a 100755
--- a/tools/roll_webrtc.py
+++ b/tools/roll_webrtc.py
@@ -38,6 +38,9 @@ IS_WIN = sys.platform.startswith('win')
WEBRTC_PATH = os.path.join('third_party', 'webrtc')
LIBJINGLE_PATH = os.path.join('third_party', 'libjingle', 'source', 'talk')
LIBJINGLE_README = os.path.join('third_party', 'libjingle', 'README.chromium')
+# Run these CQ trybots in addition to the default ones in infra/config/cq.cfg.
+EXTRA_TRYBOTS = ('tryserver.chromium.linux:linux_chromium_archive_rel_ng,'
+ 'tryserver.chromium.mac:mac_chromium_archive_rel_ng')
# Result codes from build/third_party/buildbot_8_4p1/buildbot/status/results.py
# plus the -1 code which is used when there's no result yet.
@@ -184,6 +187,7 @@ def _GenerateCLDescriptionCommand(webrtc_current, libjingle_current,
description.extend(['-m', libjingle_str])
description.extend(['-m', 'Changes: %s' % libjingle_changelog_url])
description.extend(['-m', 'TBR='])
+ description.extend(['-m', 'CQ_EXTRA_TRYBOTS=%s' % EXTRA_TRYBOTS])
return description
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698