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

Side by Side Diff: build/android/buildbot.sh

Issue 10914132: Move buildbot files to a separate buildbot dir (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | build/android/buildbot/bb_fyi_builder.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/bin/bash -ex
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5 #
6 # Currently used as the entry point by both trybot and FYI bot.
7 # TODO(jrg): redirect those bots to buildbot_try_compile.sh and
8 # buildbot_fyi.sh, then delete this file.
9
10
11 ROOT=$(cd "$(dirname $0)"; pwd)
12 if [ "${TRYBOT:-0}" = 1 ] ; then
13 exec $ROOT/buildbot_try_compile.sh
14 else
15 exec $ROOT/buildbot_fyi.sh
16 fi
OLDNEW
« no previous file with comments | « no previous file | build/android/buildbot/bb_fyi_builder.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698