summaryrefslogtreecommitdiffstats
path: root/.ci
diff options
context:
space:
mode:
authorliushuyu <liushuyu011@gmail.com>2023-03-04 06:38:56 +0100
committerbunnei <bunneidev@gmail.com>2023-06-03 09:05:33 +0200
commit1d0329a065f627de17c97ff5224dfc90504b83f8 (patch)
tree78028f74a5302ead3364f5c1d9a15a1a83eadc10 /.ci
parentandroid: build.gradle: Cleanup build types. (diff)
downloadyuzu-1d0329a065f627de17c97ff5224dfc90504b83f8.tar
yuzu-1d0329a065f627de17c97ff5224dfc90504b83f8.tar.gz
yuzu-1d0329a065f627de17c97ff5224dfc90504b83f8.tar.bz2
yuzu-1d0329a065f627de17c97ff5224dfc90504b83f8.tar.lz
yuzu-1d0329a065f627de17c97ff5224dfc90504b83f8.tar.xz
yuzu-1d0329a065f627de17c97ff5224dfc90504b83f8.tar.zst
yuzu-1d0329a065f627de17c97ff5224dfc90504b83f8.zip
Diffstat (limited to '.ci')
-rwxr-xr-x.ci/scripts/android/build.sh12
-rwxr-xr-x.ci/scripts/android/upload.sh24
2 files changed, 36 insertions, 0 deletions
diff --git a/.ci/scripts/android/build.sh b/.ci/scripts/android/build.sh
new file mode 100755
index 000000000..1d669919c
--- /dev/null
+++ b/.ci/scripts/android/build.sh
@@ -0,0 +1,12 @@
+#!/bin/bash -ex
+
+export NDK_CCACHE="$(which ccache)"
+ccache -s
+
+BUILD_FLAVOR=mainline
+
+cd src/android
+chmod +x ./gradlew
+./gradlew "assemble${BUILD_FLAVOR}Release" "bundle${BUILD_FLAVOR}Release"
+
+ccache -s
diff --git a/.ci/scripts/android/upload.sh b/.ci/scripts/android/upload.sh
new file mode 100755
index 000000000..269684178
--- /dev/null
+++ b/.ci/scripts/android/upload.sh
@@ -0,0 +1,24 @@
+#!/bin/bash -ex
+
+. ./.ci/scripts/common/pre-upload.sh
+
+REV_NAME="yuzu-${GITDATE}-${GITREV}"
+
+BUILD_FLAVOR=mainline
+
+cp src/android/app/build/outputs/apk/"${BUILD_FLAVOR}/release/app-${BUILD_FLAVOR}-release.apk" \
+ "artifacts/${REV_NAME}.apk"
+cp src/android/app/build/outputs/bundle/"${BUILD_FLAVOR}Release"/"app-${BUILD_FLAVOR}-release.aab" \
+ "artifacts/${REV_NAME}.aab"
+
+if [ -n "${ANDROID_KEYSTORE_B64}" ]
+then
+ echo "Signing apk..."
+ base64 --decode <<< "${ANDROID_KEYSTORE_B64}" > ks.jks
+
+ apksigner sign --ks ks.jks \
+ --ks-key-alias "${ANDROID_KEY_ALIAS}" \
+ --ks-pass env:ANDROID_KEYSTORE_PASS "artifacts/${REV_NAME}.apk"
+else
+ echo "No keystore specified, not signing the APK files."
+fi