mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-01 07:55:07 +01:00
2d6aca4563
* build: Rework CI and move all bundling into new build target. * ci: Use "mingw" in msys2 release names for compatibility. * ci: Use "osx" in macOS release names for compatibility. * ci: Disable macOS upload. Will be moved to a separate PR for canary merge.
23 lines
553 B
Bash
Executable File
23 lines
553 B
Bash
Executable File
#!/bin/bash -ex
|
|
|
|
export NDK_CCACHE=$(which ccache)
|
|
[ "$GITHUB_REPOSITORY" = "citra-emu/citra-canary" ] &&
|
|
BUILD_FLAVOR=canary ||
|
|
BUILD_FLAVOR=nightly
|
|
|
|
if [ ! -z "${ANDROID_KEYSTORE_B64}" ]; then
|
|
export ANDROID_KEYSTORE_FILE="${GITHUB_WORKSPACE}/ks.jks"
|
|
base64 --decode <<< "${ANDROID_KEYSTORE_B64}" > "${ANDROID_KEYSTORE_FILE}"
|
|
fi
|
|
|
|
cd src/android
|
|
chmod +x ./gradlew
|
|
./gradlew assemble${BUILD_FLAVOR}Release
|
|
./gradlew bundle${BUILD_FLAVOR}Release
|
|
|
|
ccache -s
|
|
|
|
if [ ! -z "${ANDROID_KEYSTORE_B64}" ]; then
|
|
rm "${ANDROID_KEYSTORE_FILE}"
|
|
fi
|