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