mirror of
https://github.com/AngelAuraMC/angelauramc-openjdk-build.git
synced 2025-09-08 20:04:09 -04:00
12 lines
184 B
Bash
Executable File
12 lines
184 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
if [ "$BUILD_IOS" == "1" ]; then
|
|
export TARGET=aarch64-apple-ios
|
|
else
|
|
export TARGET=aarch64-linux-android
|
|
fi
|
|
export TARGET_JDK=aarch64
|
|
|
|
bash ci_build_global.sh
|
|
|