diff options
| author | t895 <clombardo169@gmail.com> | 2023-12-26 19:22:08 -0500 |
|---|---|---|
| committer | t895 <clombardo169@gmail.com> | 2023-12-28 20:53:16 -0500 |
| commit | d677052e8c88f5a3605f5f82c7c773dcf4888068 (patch) | |
| tree | 56a4483ed8c71a6e20d5097d674b62f63bcef11f /.ci/scripts/android/build.sh | |
| parent | 12178c694ab20898c2d007e0efb30a28d1aee100 (diff) | |
actions: android: Build relWithDebInfo on main repo
Diffstat (limited to '.ci/scripts/android/build.sh')
| -rwxr-xr-x | .ci/scripts/android/build.sh | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/.ci/scripts/android/build.sh b/.ci/scripts/android/build.sh index d135af029..98593017f 100755 --- a/.ci/scripts/android/build.sh +++ b/.ci/scripts/android/build.sh @@ -6,7 +6,12 @@ export NDK_CCACHE="$(which ccache)" ccache -s -BUILD_FLAVOR=mainline +BUILD_FLAVOR="mainline" + +BUILD_TYPE="release" +if [ "${GITHUB_REPOSITORY}" == "yuzu-emu/yuzu" ]; then + BUILD_TYPE="relWithDebInfo" +fi if [ ! -z "${ANDROID_KEYSTORE_B64}" ]; then export ANDROID_KEYSTORE_FILE="${GITHUB_WORKSPACE}/ks.jks" @@ -15,7 +20,7 @@ fi cd src/android chmod +x ./gradlew -./gradlew "assemble${BUILD_FLAVOR}Release" "bundle${BUILD_FLAVOR}Release" +./gradlew "assemble${BUILD_FLAVOR}${BUILD_TYPE}" "bundle${BUILD_FLAVOR}${BUILD_TYPE}" ccache -s |
