From aafbb0b0ebd1372fcd587d1790e6796f1580c070 Mon Sep 17 00:00:00 2001 From: vyPal <66716025+vyPal@users.noreply.github.com> Date: Mon, 13 Nov 2023 10:48:02 +0100 Subject: [PATCH] Remove AVD caching --- .github/workflows/test-coverage.yml | 25 +------------------------ 1 file changed, 1 insertion(+), 24 deletions(-) diff --git a/.github/workflows/test-coverage.yml b/.github/workflows/test-coverage.yml index 1add210..b7cdfb5 100644 --- a/.github/workflows/test-coverage.yml +++ b/.github/workflows/test-coverage.yml @@ -24,6 +24,7 @@ jobs: id: verify-changed-files with: files: | + .github/workflows/test-coverage.yml pubspec.yaml pubspec.lock l10n.yaml @@ -40,30 +41,6 @@ jobs: with: fetch-depth: 0 - - name: Gradle cache - uses: gradle/gradle-build-action@v2 - - - name: AVD cache - uses: actions/cache@v3 - id: avd-cache - with: - path: | - ~/.android/avd/* - ~/.android/adb* - key: avd-33 - - - name: create AVD and generate snapshot for caching - if: steps.avd-cache.outputs.cache-hit != 'true' - uses: reactivecircus/android-emulator-runner@v2 - with: - api-level: 31 - arch: x86_64 - profile: pixel_6_pro - force-avd-creation: false - emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none - disable-animations: false - script: echo "Generated AVD snapshot for caching." - - uses: actions/setup-java@v2 with: distribution: 'zulu'