Trying to see if we can get benchmark flavors out of github actions

This commit is contained in:
Vitor Pamplona
2025-08-05 17:20:25 -04:00
parent 9475978612
commit 5d1e3e804f

View File

@@ -40,7 +40,7 @@ jobs:
if: ${{ always() }} # IMPORTANT: run Android Test Report regardless
- name: Build APK (gradle)
run: ./gradlew assembleDebug --no-daemon
run: ./gradlew assemble --no-daemon
- name: Upload Play APK
uses: actions/upload-artifact@v4
@@ -54,6 +54,18 @@ jobs:
name: FDroid Debug APK
path: amethyst/build/outputs/apk/fdroid/debug/amethyst-fdroid-universal-debug.apk
- name: Upload Play APK Benchmark
uses: actions/upload-artifact@v4
with:
name: Play Benchmark APK
path: amethyst/build/outputs/apk/play/debug/amethyst-play-universal-benchmark.apk
- name: Upload FDroid APK Benchmark
uses: actions/upload-artifact@v4
with:
name: FDroid Benchmark APK
path: amethyst/build/outputs/apk/fdroid/debug/amethyst-fdroid-universal-benchmark.apk
- name: Upload Compose Reports
uses: actions/upload-artifact@v4
with: