This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
2023-03-04 05:38:56 +00:00
|
|
|
#!/bin/bash -ex
|
|
|
|
|
2023-05-31 03:50:09 +00:00
|
|
|
# SPDX-FileCopyrightText: 2023 yuzu Emulator Project
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2023-03-04 05:38:56 +00:00
|
|
|
. ./.ci/scripts/common/pre-upload.sh
|
|
|
|
|
|
|
|
REV_NAME="yuzu-${GITDATE}-${GITREV}"
|
|
|
|
|
2023-12-27 00:22:08 +00:00
|
|
|
BUILD_FLAVOR="mainline"
|
2023-03-04 05:38:56 +00:00
|
|
|
|
2023-12-27 00:22:08 +00:00
|
|
|
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" \
|
2023-03-04 05:38:56 +00:00
|
|
|
"artifacts/${REV_NAME}.apk"
|
2023-12-27 00:22:08 +00:00
|
|
|
cp src/android/app/build/outputs/bundle/"${BUILD_FLAVOR}${BUILD_TYPE_UPPER}"/"app-${BUILD_FLAVOR}-${BUILD_TYPE_LOWER}.aab" \
|
2023-03-04 05:38:56 +00:00
|
|
|
"artifacts/${REV_NAME}.aab"
|