From 4177c6c8b7c83408f2bb22c9424de0df30e24f74 Mon Sep 17 00:00:00 2001 From: Nicolas Geoffray Date: Tue, 13 Sep 2016 14:08:31 +0100 Subject: [PATCH] New workaround for chromium buildbot. Turns out once repo is init, doing a repo init/sync with another repo version has no effect. So instead just do the Android specific instructions that the chromium repo seems to not do. Change-Id: I0c42c4c2d61af54760a505a63554434f65c381c1 --- tools/buildbot-build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/buildbot-build.sh b/tools/buildbot-build.sh index 16d45c2fe..5ef66d196 100755 --- a/tools/buildbot-build.sh +++ b/tools/buildbot-build.sh @@ -50,9 +50,9 @@ done # is addressed. repo=$(which repo) if [[ $repo == *"depot_tools"* ]]; then - curl https://storage.googleapis.com/git-repo-downloads/repo > ./repo - chmod +x ./repo - ./repo sync $j_arg + ln -s build/soong/root.bp Android.bp + ln -s build/soong/bootstrap.bash bootstrap.bash + echo "include build/core/main.mk" > Makefile fi if [[ $mode == "host" ]]; then -- 2.11.0