Remove build shell script and use Gradle plugin in CI workflow

This commit is contained in:
thunderbiscuit 2022-04-17 09:14:55 -04:00
parent 0ab14264c0
commit e41bc9a84f
No known key found for this signature in database
GPG Key ID: 88253696EB836462
2 changed files with 6 additions and 72 deletions

View File

@ -30,17 +30,19 @@ jobs:
java-version: 11
- name: Install rust android targets
run: rustup target add x86_64-linux-android aarch64-linux-android armv7-linux-androideabi i686-linux-android
run: rustup target add x86_64-linux-android aarch64-linux-android
- name: Install uniffi-bindgen
run: cargo install uniffi_bindgen --version 0.16.0
- name: Build bdk-ffi libraries
run: ./build.sh
- name: Build bdk-android library
run: ./gradlew :android:buildAndroidLib
- name: Run Android tests
run: ./gradlew :android:test --console=rich
- name: Build bdk-jvm library
run: ./gradlew :jvm:buildJvmLib
- name: Run JVM tests
run: ./gradlew :jvm:test --console=rich

View File

@ -1,68 +0,0 @@
#!/usr/bin/env bash
set -eo pipefail
echo "Build and test bdk-ffi library for local platform (darwin or linux)"
pushd bdk-ffi
OS=$(uname)
echo -n "Copy "
case $OS in
"Darwin")
echo -n "darwin "
# x86_64 (intel)
cargo build --release --target x86_64-apple-darwin
mkdir -p ../jvm/src/main/resources/darwin-x86-64
cp target/x86_64-apple-darwin/release/libbdkffi.dylib ../jvm/src/main/resources/darwin-x86-64
# aarch64 (m1)
cargo build --release --target aarch64-apple-darwin
mkdir -p ../jvm/src/main/resources/darwin-aarch64
cp target/aarch64-apple-darwin/release/libbdkffi.dylib ../jvm/src/main/resources/darwin-aarch64
;;
"Linux")
echo -n "linux "
cargo build --release
mkdir -p ../jvm/src/main/resources/linux-x86-64
cp target/release/libbdkffi.so ../jvm/src/main/resources/linux-x86-64
;;
esac
echo "libs to jvm subproject"
echo "Generate kotlin bindings from bdk.udl to jvm subproject"
uniffi-bindgen generate src/bdk.udl --no-format --out-dir ../jvm/src/main/kotlin --language kotlin
## android
# If ANDROID_NDK_ROOT is not set then set it to github actions default
[ -z "$ANDROID_NDK_ROOT" ] && export ANDROID_NDK_ROOT=$ANDROID_SDK_ROOT/ndk-bundle
# Update this line accordingly if you are not building *from* darwin-x86_64 or linux-x86_64
export PATH=$PATH:$ANDROID_NDK_ROOT/toolchains/llvm/prebuilt/`uname | tr '[:upper:]' '[:lower:]'`-x86_64/bin
# Required for 'ring' dependency to cross-compile to Android platform, must be at least 21
export CFLAGS="-D__ANDROID_API__=21"
# IMPORTANT: make sure every target is not a substring of a different one. We check for them with grep later on
BUILD_TARGETS="${BUILD_TARGETS:-aarch64,x86_64,i686}"
mkdir -p ../android/src/main/jniLibs/arm64-v8a ../android/src/main/jniLibs/x86_64 ../android/src/main/jniLibs/x86
if echo $BUILD_TARGETS | grep "aarch64"; then
CARGO_TARGET_AARCH64_LINUX_ANDROID_LINKER="aarch64-linux-android21-clang" CC="aarch64-linux-android21-clang" cargo build --release --target=aarch64-linux-android
cp target/aarch64-linux-android/release/libbdkffi.so ../android/src/main/jniLibs/arm64-v8a
fi
if echo $BUILD_TARGETS | grep "x86_64"; then
CARGO_TARGET_X86_64_LINUX_ANDROID_LINKER="x86_64-linux-android21-clang" CC="x86_64-linux-android21-clang" cargo build --release --target=x86_64-linux-android
cp target/x86_64-linux-android/release/libbdkffi.so ../android/src/main/jniLibs/x86_64
fi
if echo $BUILD_TARGETS | grep "i686"; then
CARGO_TARGET_I686_LINUX_ANDROID_LINKER="i686-linux-android21-clang" CC="i686-linux-android21-clang" cargo build --release --target=i686-linux-android
cp target/i686-linux-android/release/libbdkffi.so ../android/src/main/jniLibs/x86
fi
popd
# copy bdk-ffi kotlin binding sources from jvm to android
cp -R jvm/src/main/kotlin android/src/main
# bdk-kotlin build jar and aar subprojects
./gradlew build