-
-
Save AstroProfundis/d4640ae0560289711889 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
export USE_CCACHE=1 | |
export CCACHE_DIR=~/.ccache | |
export JAVA_HOME=/usr/lib64/jvm/java | |
export PATH=$PATH:$JAVA_HOME/bin | |
export ANDROID_JAVA_HOME=$JAVA_HOME | |
export PATH=$PATH:~/bin | |
export KBUILD_BUILD_HOST=moe.cat | |
device=$1 | |
date | |
. build/envsetup.sh | |
if ( echo -n $2 | grep -q -e "\S" ); then | |
export CM_BUILDTYPE=$2 | |
else | |
export CM_BUILDTYPE=AOJP | |
fi | |
time brunch $device | |
echo "end date: `date`" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment