From 5d1e3e804ff642faccf57807a5773303ee27afa7 Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Tue, 5 Aug 2025 17:20:25 -0400 Subject: [PATCH] Trying to see if we can get benchmark flavors out of github actions --- .github/workflows/build.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 86c795dd4..d399cdb65 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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: