Skip to content

Commit

Permalink
Update manual_generate_apk.yml
Browse files Browse the repository at this point in the history
Added VR variants and more detailed logs
  • Loading branch information
anr2me authored Mar 21, 2024
1 parent 6e7b7cc commit eb83122
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/manual_generate_apk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ on:
options:
- NormalOptimized
- NormalDebug
- VrDebug
- VrOptimized

jobs:

Expand Down Expand Up @@ -39,7 +41,7 @@ jobs:
# ndk-version: r21e

- name: Assemble APK
run: bash ./gradlew assemble${{ github.event.inputs.buildVariant }} --stacktrace
run: bash ./gradlew assemble${{ github.event.inputs.buildVariant }} --stacktrace --debug --scan

#- name: Gradle Test
# run: bash ./gradlew test${{ github.event.inputs.buildVariant }}UnitTest --stacktrace
Expand All @@ -48,10 +50,8 @@ jobs:
run: |
find . -name "*.apk"
mkdir ppsspp
if [ -e android/build/*/apk/*/*/android-normal-optimized.apk ]; then
cp android/build/*/apk/*/*/android-normal-optimized.apk ppsspp/
elif [ -e android/build/*/apk/*/*/android-normal-debug.apk ]; then
cp android/build/*/apk/*/*/android-normal-debug.apk ppsspp/
if [ -e android/build/*/apk/*/*/*.apk ]; then
cp android/build/*/apk/*/*/*.apk ppsspp/
fi
- name: Upload artifact
Expand Down

0 comments on commit eb83122

Please sign in to comment.