Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 09af254c authored by Kousik Kumar's avatar Kousik Kumar
Browse files

Add a prompt to try out RBE for local builds

This is to nudge developers to use RBE especially when they run into
long builds and do NOT have RBE turned on.

Change-Id: I7da94763f5387310e522931bf650f9d7c01dc7f2
parent cc303bec
Loading
Loading
Loading
Loading
+7 −0
Original line number Original line Diff line number Diff line
@@ -1661,12 +1661,19 @@ function _wrap_build()
    if [ -n "$ncolors" ] && [ $ncolors -ge 8 ]; then
    if [ -n "$ncolors" ] && [ $ncolors -ge 8 ]; then
        color_failed=$'\E'"[0;31m"
        color_failed=$'\E'"[0;31m"
        color_success=$'\E'"[0;32m"
        color_success=$'\E'"[0;32m"
        color_warning=$'\E'"[0;33m"
        color_reset=$'\E'"[00m"
        color_reset=$'\E'"[00m"
    else
    else
        color_failed=""
        color_failed=""
        color_success=""
        color_success=""
        color_reset=""
        color_reset=""
    fi
    fi

    if [[ "x${USE_RBE}" == "x" && $mins -gt 15 && "${ANDROID_BUILD_ENVIRONMENT_CONFIG}" == "googler" ]]; then
        echo
        echo "${color_warning}Start using RBE (http://go/build-fast) to get faster builds!${color_reset}"
    fi

    echo
    echo
    if [ $ret -eq 0 ] ; then
    if [ $ret -eq 0 ] ; then
        echo -n "${color_success}#### build completed successfully "
        echo -n "${color_success}#### build completed successfully "