mirror of https://github.com/BOINC/boinc.git
56 lines
1.5 KiB
Bash
Executable File
56 lines
1.5 KiB
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
#
|
|
# See: https://boinc.berkeley.edu/trac/wiki/AndroidBuildClient
|
|
#
|
|
|
|
# Script to compile BOINC selected component for Android
|
|
|
|
# check working directory because the script needs to be called like: ./android/ci_build_apps.sh
|
|
if [ ! -d "android" ]; then
|
|
echo "start this script in the source root directory"
|
|
exit 1
|
|
fi
|
|
|
|
ci=""
|
|
component=""
|
|
build_with_vcpkg=""
|
|
|
|
while [ $# -gt 0 ]; do
|
|
key="$1"
|
|
case $key in
|
|
--ci)
|
|
ci="$key"
|
|
;;
|
|
--component)
|
|
component=$2
|
|
shift
|
|
;;
|
|
--with-vcpkg)
|
|
build_with_vcpkg="$key"
|
|
;;
|
|
*)
|
|
echo "unrecognized option $key"
|
|
;;
|
|
esac
|
|
shift # past argument or value
|
|
done
|
|
|
|
if [ "x$component" = "x" ]; then
|
|
echo "No component to build"
|
|
exit 1
|
|
fi
|
|
|
|
cd android
|
|
|
|
rm -rf /tmp/vcpkg_updated
|
|
|
|
./buildAndroidBOINC-CI.sh --cache_dir "$ANDROID_TC" --build_dir "$BUILD_DIR" --silent $ci --component $component $build_with_vcpkg --arch armv6
|
|
./buildAndroidBOINC-CI.sh --cache_dir "$ANDROID_TC" --build_dir "$BUILD_DIR" --silent $ci --component $component $build_with_vcpkg --arch arm
|
|
./buildAndroidBOINC-CI.sh --cache_dir "$ANDROID_TC" --build_dir "$BUILD_DIR" --silent $ci --component $component $build_with_vcpkg --arch arm64
|
|
./buildAndroidBOINC-CI.sh --cache_dir "$ANDROID_TC" --build_dir "$BUILD_DIR" --silent $ci --component $component $build_with_vcpkg --arch x86
|
|
./buildAndroidBOINC-CI.sh --cache_dir "$ANDROID_TC" --build_dir "$BUILD_DIR" --silent $ci --component $component $build_with_vcpkg --arch x86_64
|
|
|
|
cd ..
|