mirror of
https://github.com/AngelAuraMC/angelauramc-openjdk-build.git
synced 2025-09-22 10:50:57 -04:00
12 lines
188 B
Bash
Executable File
12 lines
188 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 2_ci_build_global.sh
|
|
|