summaryrefslogtreecommitdiffstats
path: root/.ci/scripts/android/upload.sh
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-12-30 20:59:04 +0100
committerGitHub <noreply@github.com>2023-12-30 20:59:04 +0100
commitace74bd06623d80af20acd2f0d812ef5ccabfb7d (patch)
tree229144f8f06bf84ed20da79c08ae5f1a8da4b3c5 /.ci/scripts/android/upload.sh
parentMerge pull request #12527 from DCNick3/log-more-sdl-errors (diff)
parentactions: android: Build relWithDebInfo on main repo (diff)
downloadyuzu-ace74bd06623d80af20acd2f0d812ef5ccabfb7d.tar
yuzu-ace74bd06623d80af20acd2f0d812ef5ccabfb7d.tar.gz
yuzu-ace74bd06623d80af20acd2f0d812ef5ccabfb7d.tar.bz2
yuzu-ace74bd06623d80af20acd2f0d812ef5ccabfb7d.tar.lz
yuzu-ace74bd06623d80af20acd2f0d812ef5ccabfb7d.tar.xz
yuzu-ace74bd06623d80af20acd2f0d812ef5ccabfb7d.tar.zst
yuzu-ace74bd06623d80af20acd2f0d812ef5ccabfb7d.zip
Diffstat (limited to '.ci/scripts/android/upload.sh')
-rwxr-xr-x.ci/scripts/android/upload.sh13
1 files changed, 10 insertions, 3 deletions
diff --git a/.ci/scripts/android/upload.sh b/.ci/scripts/android/upload.sh
index 5f8ca73c0..26b1a7efa 100755
--- a/.ci/scripts/android/upload.sh
+++ b/.ci/scripts/android/upload.sh
@@ -7,9 +7,16 @@
REV_NAME="yuzu-${GITDATE}-${GITREV}"
-BUILD_FLAVOR=mainline
+BUILD_FLAVOR="mainline"
-cp src/android/app/build/outputs/apk/"${BUILD_FLAVOR}/release/app-${BUILD_FLAVOR}-release.apk" \
+BUILD_TYPE_LOWER="release"
+BUILD_TYPE_UPPER="Release"
+if [ "${GITHUB_REPOSITORY}" == "yuzu-emu/yuzu" ]; then
+ BUILD_TYPE_LOWER="relWithDebInfo"
+ BUILD_TYPE_UPPER="RelWithDebInfo"
+fi
+
+cp src/android/app/build/outputs/apk/"${BUILD_FLAVOR}/${BUILD_TYPE_LOWER}/app-${BUILD_FLAVOR}-${BUILD_TYPE_LOWER}.apk" \
"artifacts/${REV_NAME}.apk"
-cp src/android/app/build/outputs/bundle/"${BUILD_FLAVOR}Release"/"app-${BUILD_FLAVOR}-release.aab" \
+cp src/android/app/build/outputs/bundle/"${BUILD_FLAVOR}${BUILD_TYPE_UPPER}"/"app-${BUILD_FLAVOR}-${BUILD_TYPE_LOWER}.aab" \
"artifacts/${REV_NAME}.aab"