From 4d46a5e1e7a86d80fed0a18b9a0a8e95e47b08cf Mon Sep 17 00:00:00 2001 From: ehmaldonado Date: Thu, 10 Aug 2017 15:32:02 -0700 Subject: [PATCH] Revert of move linux_internal from the autoroller CQ. (patchset #1 id:1 of https://codereview.webrtc.org/2997523002/ ) Reason for revert: The credentials for the linux_internal bot are fixed now. Original issue's description: > Reland of move linux_internal from the autoroller CQ. (patchset #1 id:1 of https://codereview.webrtc.org/2990233002/ ) > > Reason for revert: > linux_internal buildbucket is broken > > Original issue's description: > > Revert of Remove linux_internal from the autoroller CQ. (patchset #1 id:1 of https://codereview.webrtc.org/2985933002/ ) > > > > Reason for revert: > > linux_internal now checks that the CL is authored by a googler before executing the tests > > > > Original issue's description: > > > Remove linux_internal from the autoroller CQ. > > > > > > The CQ no longer has permission to schedule builds in linux_internal. > > > > > > NOTRY=True > > > TBR=kjellander@webrtc.org > > > BUG=None > > > > > > Review-Url: https://codereview.webrtc.org/2985933002 > > > Cr-Commit-Position: refs/heads/master@{#19178} > > > Committed: https://chromium.googlesource.com/external/webrtc/+/5ba9730265c3bb4069fdda557805d594b1cff789 > > > > TBR=mbonadei@webrtc.org,kjellander@webrtc.org,nodir@chromium.org > > BUG=None > > NOTRY=True > > > > Review-Url: https://codereview.webrtc.org/2990233002 > > Cr-Commit-Position: refs/heads/master@{#19240} > > Committed: https://chromium.googlesource.com/external/webrtc/+/367aaa7ca5eeac7ca18ace3fce16636a8dccf0ff > > TBR=mbonadei@webrtc.org,kjellander@webrtc.org,nodir@chromium.org > # Not skipping CQ checks because original CL landed more than 1 days ago. > BUG=None > > Review-Url: https://codereview.webrtc.org/2997523002 > Cr-Commit-Position: refs/heads/master@{#19260} > Committed: https://chromium.googlesource.com/external/webrtc/+/81cf5bbff959f4a4ccb27fe3b48a7292b54f0734 TBR=mbonadei@webrtc.org,kjellander@webrtc.org,nodir@chromium.org # Not skipping CQ checks because original CL landed more than 1 days ago. BUG=None Review-Url: https://codereview.webrtc.org/3001523002 Cr-Commit-Position: refs/heads/master@{#19312} --- tools_webrtc/autoroller/roll_deps.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tools_webrtc/autoroller/roll_deps.py b/tools_webrtc/autoroller/roll_deps.py index f3ba785bb7..b96102985f 100755 --- a/tools_webrtc/autoroller/roll_deps.py +++ b/tools_webrtc/autoroller/roll_deps.py @@ -27,6 +27,11 @@ DONT_AUTOROLL_THESE = [ 'src/webrtc/examples/androidtests/third_party/gradle', ] +# Run these CQ trybots in addition to the default ones in infra/config/cq.cfg. +EXTRA_TRYBOTS = ( + 'master.internal.tryserver.corp.webrtc:linux_internal' +) + WEBRTC_URL = 'https://chromium.googlesource.com/external/webrtc' CHROMIUM_SRC_URL = 'https://chromium.googlesource.com/chromium/src' CHROMIUM_COMMIT_TEMPLATE = CHROMIUM_SRC_URL + '/+/%s' @@ -316,6 +321,7 @@ def GenerateCommitMessage(current_cr_rev, new_cr_rev, current_commit_pos, commit_msg.append('TBR=%s' % tbr_authors) commit_msg.append('BUG=None') + commit_msg.append('CQ_INCLUDE_TRYBOTS=%s' % EXTRA_TRYBOTS) return '\n'.join(commit_msg)