Add build script to simplify the build procedure.

Once the source code is downloaded and the dependencies are
installed, it makes it easier for people to build Replicant.

It also saves the builds logs, to enable to later look at why
the build failed without needing to re-run the build.

However users still have to take care of running repo --sync
if necessary. This ensure that the local modifications are not
lost and also simplifies the procedure for testing patches.

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
This commit is contained in:
Denis 'GNUtoo' Carikli 2019-08-05 14:50:29 +02:00
parent 950958a74c
commit 79c21f1b92
No known key found for this signature in database
GPG Key ID: 5F5DFCC14177E263
1 changed files with 78 additions and 0 deletions

78
build.sh Executable file
View File

@ -0,0 +1,78 @@
#!/bin/bash
# Copyright (C) 2019 Denis 'GNUtoo' Carikli' <GNUtoo@cyberdimension.org>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
set -e
supported_machines=" \
espresso3g \
espressowifi \
i9100 \
i9300 \
i9305 \
maguro \
n5100 \
n5110 \
n7000 \
n7100 \
"
usage()
{
printf "%s [" "$0"
for machine in ${supported_machines} ; do
printf "${machine}|"
done
printf "\b]\n"
printf "%s all # build all machines\n" "$0"
exit 1
}
build()
{
machine="$1"
parallel_tasks=$(echo "$(grep 'processor' /proc/cpuinfo | wc -l ) + 1" | bc)
log="logs/build_${machine}_$(date '+%s').log"
echo "starting to building for ${machine}: ${log}"
source build/envsetup.sh
lunch "replicant_${machine}-userdebug"
time make -j$parallel_tasks bacon 2>&1 | tee "${log}"
vendor/replicant/sign-build "${machine}" | tee -a "${log}"
echo "${machine} DONE: ${log}"
}
if [ $# -ne 1 ] ; then
usage
fi
if [ "$1" = "all" ] ; then
for machine in ${supported_machines} ; do
build "${machine}"
done
else
found=0
for machine in ${supported_machines} ; do
if [ "${machine}" = "$1" ] ; then
found=1
fi
done
if [ ${found} -eq 0 ] ; then
printf "machine %s not supported\n" "$1"
usage
fi
build "$1"
fi