0
0
mirror of https://github.com/zeromq/libzmq.git synced 2024-12-26 23:01:04 +08:00

Merge pull request #4438 from stephan57160/master

Problem: Android CI build scripts need minor enhancements (traces & cleanup)
This commit is contained in:
Luca Boccassi 2022-10-11 23:32:51 +02:00 committed by GitHub
commit c19f83027d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 14 deletions

View File

@ -3,7 +3,7 @@
set -e
function usage {
echo "Usage ./build.sh [ arm | arm64 | x86 | x86_64 ]"
echo "LIBZMQ (${BUILD_ARCH}) - Usage ./build.sh [ arm | arm64 | x86 | x86_64 ]"
}
# Use directory of current script as the build directory and working directory
@ -25,17 +25,11 @@ if [ -z $BUILD_ARCH ]; then
exit 1
fi
case $(uname | tr '[:upper:]' '[:lower:]') in
linux*)
export HOST_PLATFORM=linux-x86_64
;;
darwin*)
export HOST_PLATFORM=darwin-x86_64
;;
*)
echo "Unsupported platform"
exit 1
;;
platform="$(uname | tr '[:upper:]' '[:lower:]')"
case "${platform}" in
linux*) export HOST_PLATFORM=linux-x86_64 ;;
darwin*) export HOST_PLATFORM=darwin-x86_64 ;;
*) echo "LIBZMQ (${BUILD_ARCH}) - Unsupported platform ('${platform}')" ; exit 1 ;;
esac
# Set default values used in ci builds
@ -57,7 +51,7 @@ mkdir -p "${cache}"
# Check for environment variable to clear the prefix and do a clean build
if [[ $ANDROID_BUILD_CLEAN ]]; then
echo "Doing a clean build (removing previous build and dependencies)..."
echo "LIBZMQ (${BUILD_ARCH}) - Doing a clean build (removing previous build and dependencies)..."
rm -rf "${ANDROID_BUILD_PREFIX}"/*
fi
@ -125,4 +119,4 @@ cp "${ANDROID_STL_ROOT}/${ANDROID_STL}" "${ANDROID_BUILD_PREFIX}/lib/."
# Verify shared libraries in prefix
android_build_verify_so "${VERIFY}" "${ANDROID_STL}"
echo "libzmq android build succeeded"
echo "LIBZMQ (${BUILD_ARCH}) - Android build successful"

View File

@ -7,6 +7,8 @@ export NDK_VERSION=android-ndk-r25
export ANDROID_NDK_ROOT="/tmp/${NDK_VERSION}"
# Cleanup.
rm -rf /tmp/android_build/
rm -rf prefix/
rm -rf /tmp/tmp-deps
mkdir -p /tmp/tmp-deps