diff options
author | jrg@chromium.org <jrg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-02 06:31:06 +0000 |
---|---|---|
committer | jrg@chromium.org <jrg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-02 06:31:06 +0000 |
commit | 64879ed5af0f9eea1a2f6c68d08f317ddf33bc37 (patch) | |
tree | ffcffc45b6319e6321de444cc7afd4431ff6669a /build/android | |
parent | bec929ccaf8f3dc770801b959eed3f76c81b97cc (diff) | |
download | chromium_src-64879ed5af0f9eea1a2f6c68d08f317ddf33bc37.zip chromium_src-64879ed5af0f9eea1a2f6c68d08f317ddf33bc37.tar.gz chromium_src-64879ed5af0f9eea1a2f6c68d08f317ddf33bc37.tar.bz2 |
Disable Goma for Android bots.
BUG=None
TEST=
Review URL: https://chromiumcodereview.appspot.com/9584001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124612 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/android')
-rwxr-xr-x | build/android/buildbot_functions.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/build/android/buildbot_functions.sh b/build/android/buildbot_functions.sh index 6f3e0c5..f3d1f4a 100755 --- a/build/android/buildbot_functions.sh +++ b/build/android/buildbot_functions.sh @@ -118,6 +118,16 @@ function bb_setup_goma_internal { # $@: make args. # Use goma if possible; degrades to non-Goma if needed. function bb_goma_make { + # Disable Goma + # Seems to work on "Android FYI" + # http://build.chromium.org/p/chromium.fyi/builders/Chromium%20Linux%20Android/builds/6421/steps/Compile/logs/stdio + # and Linux trybots + # http://build.chromium.org/p/chromium/builders/Linux%20x64/builds/23995/steps/compile/logs/stdio + # But not on Android trybots? + # http://build.chromium.org/p/tryserver.chromium/builders/android/builds/2136/steps/Compile/logs/stdio + make -j${JOBS} "$@" + return + bb_setup_goma_internal if [ "${GOMA_DIR}" = "" ]; then |