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

Unified Diff: bin/cbuildbot.py

Issue 5312002: Change url of manifest to use ssh one as opposed to mirrored repo. (Closed) Base URL: http://git.chromium.org/git/crosutils.git@master
Patch Set: Created 10 years, 1 month 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: bin/cbuildbot.py
diff --git a/bin/cbuildbot.py b/bin/cbuildbot.py
index aef3ec27191741e024e46526260462a37a643248..cc302007877321474f496bd6ce8498738cd7bcb3 100755
--- a/bin/cbuildbot.py
+++ b/bin/cbuildbot.py
@@ -59,13 +59,6 @@ def RepoSync(buildroot, rw_checkout=False, retries=_DEFAULT_RETRIES):
# is needed so that the buildbot can kill us if git is not making
# progress.
RunCommand(['repo', '--trace', 'sync'], cwd=buildroot)
- if rw_checkout:
- # Always re-run in case of new git repos or repo sync
- # failed in a previous run because of a forced Stop Build.
- RunCommand(['repo', 'forall', '-c', 'git', 'config',
- 'url.ssh://git@gitrw.chromium.org:9222.pushinsteadof',
- 'http://git.chromium.org/git'], cwd=buildroot)
-
retries = 0
except:
retries -= 1
@@ -515,7 +508,7 @@ def main():
parser.add_option('-t', '--tracking-branch', dest='tracking_branch',
default='cros/master', help='Run the buildbot on a branch')
parser.add_option('-u', '--url', dest='url',
- default='http://git.chromium.org/git/manifest',
+ default='ssh://git@gitrw.chromium.org:9222/manifest',
help='Run the buildbot on internal manifest')
(options, args) = parser.parse_args()
« 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