mirror of
https://github.com/ong19th/Citron.git
synced 2025-12-13 16:36:56 +00:00
CI: Update CI workflows to use Citron-specific naming and paths
This commit is contained in:
parent
257aad2431
commit
eec0f34204
65 changed files with 2596 additions and 10 deletions
41
.ci/scripts/android/upload.sh
Executable file
41
.ci/scripts/android/upload.sh
Executable file
|
|
@ -0,0 +1,41 @@
|
|||
#!/bin/bash -ex
|
||||
|
||||
# SPDX-FileCopyrightText: 2019 citron Emulator Project
|
||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
. .ci/scripts/common/pre-upload.sh
|
||||
|
||||
APPNAME="org.citron.citron"
|
||||
|
||||
REV_NAME="${APPNAME}-${GITDATE}-${GITREV}"
|
||||
|
||||
APK="${REV_NAME}.apk"
|
||||
|
||||
if [ "${GITHUB_REPOSITORY}" == "Citron-Project/Cit" ]; then
|
||||
cd src/android
|
||||
./gradlew app:bundleRelease
|
||||
# RELEASE_BODY gets reset here, but its fine since we're uploading after the GitHub Release
|
||||
. .ci/scripts/common/post-upload.sh
|
||||
|
||||
sudo apt-get install -y jq
|
||||
|
||||
ls app/build/outputs/bundle/release/
|
||||
|
||||
echo "Downloading CI scripts bundle"
|
||||
ARTIFACTS_DIR="/tmp/artifact-pool"
|
||||
mkdir -p "$ARTIFACTS_DIR"
|
||||
fi
|
||||
|
||||
BUILD_FLAVOR="stable"
|
||||
|
||||
BUILD_TYPE_LOWER="release"
|
||||
BUILD_TYPE_UPPER="Release"
|
||||
if [ "${GITHUB_REPOSITORY}" == "Citron-Project/Cit" ]; 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}${BUILD_TYPE_UPPER}"/"app-${BUILD_FLAVOR}-${BUILD_TYPE_LOWER}.aab" \
|
||||
"artifacts/${REV_NAME}.aab"
|
||||
Loading…
Add table
Add a link
Reference in a new issue