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

Unified Diff: commit-queue/verification/presubmit_shim.py

Issue 135363007: Delete public commit queue to avoid confusion after move to internal repo (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/
Patch Set: Created 6 years, 10 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 | « commit-queue/verification/presubmit_check.py ('k') | commit-queue/verification/project_base.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: commit-queue/verification/presubmit_shim.py
===================================================================
--- commit-queue/verification/presubmit_shim.py (revision 249146)
+++ commit-queue/verification/presubmit_shim.py (working copy)
@@ -1,32 +0,0 @@
-#!/usr/bin/env python
-# coding=utf8
-# Copyright (c) 2012 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-"""Runs presubmit check on the source tree.
-
-This shims removes the checks for try jobs.
-"""
-
-import os
-import sys
-
-ROOT_DIR = os.path.dirname(os.path.abspath(__file__))
-sys.path.insert(0, os.path.dirname(ROOT_DIR))
-
-import find_depot_tools # pylint: disable=W0611
-import presubmit_support
-
-# Do not pass them through the command line.
-email = sys.stdin.readline().strip()
-assert email
-password = sys.stdin.readline().strip()
-sys.stdin.close()
-
-argv = sys.argv[1:]
-argv.extend(['--rietveld_email', email, '--rietveld_password', password])
-argv.extend(['--skip_canned', 'CheckRietveldTryJobExecution'])
-argv.extend(['--skip_canned', 'CheckTreeIsOpen'])
-argv.extend(['--skip_canned', 'CheckBuildbotPendingBuilds'])
-
-sys.exit(presubmit_support.Main(argv))
« no previous file with comments | « commit-queue/verification/presubmit_check.py ('k') | commit-queue/verification/project_base.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698