summaryrefslogtreecommitdiff
path: root/.ci/scripts/android/build.sh
diff options
context:
space:
mode:
Diffstat (limited to '.ci/scripts/android/build.sh')
-rwxr-xr-x.ci/scripts/android/build.sh29
1 files changed, 0 insertions, 29 deletions
diff --git a/.ci/scripts/android/build.sh b/.ci/scripts/android/build.sh
deleted file mode 100755
index 98593017f..000000000
--- a/.ci/scripts/android/build.sh
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/bash -ex
-
-# SPDX-FileCopyrightText: 2023 yuzu Emulator Project
-# SPDX-License-Identifier: GPL-3.0-or-later
-
-export NDK_CCACHE="$(which ccache)"
-ccache -s
-
-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"
- base64 --decode <<< "${ANDROID_KEYSTORE_B64}" > "${ANDROID_KEYSTORE_FILE}"
-fi
-
-cd src/android
-chmod +x ./gradlew
-./gradlew "assemble${BUILD_FLAVOR}${BUILD_TYPE}" "bundle${BUILD_FLAVOR}${BUILD_TYPE}"
-
-ccache -s
-
-if [ ! -z "${ANDROID_KEYSTORE_B64}" ]; then
- rm "${ANDROID_KEYSTORE_FILE}"
-fi