Skip to content

Commit

Permalink
reverted gradle cache on gha, as it seems to slow down tests (#2836)
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanosiano committed Jul 12, 2023
1 parent caf50ec commit 4bac687
Showing 1 changed file with 1 addition and 33 deletions.
34 changes: 1 addition & 33 deletions .github/workflows/agp-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,30 +16,6 @@ jobs:
with:
access_token: ${{ github.token }}

cache-avd:
runs-on: macos-latest
steps:
- name: AVD cache
uses: actions/cache@v3
id: avd-cache
with:
path: |
~/.android/avd/*
~/.android/adb*
key: aosp_atd

- name: create AVD and generate snapshot for caching
if: steps.avd-cache.outputs.cache-hit != 'true'
uses: reactivecircus/android-emulator-runner@d94c3fbe4fe6a29e4a5ba47c12fb47677c73656b # pin@v2
with:
api-level: 30
force-avd-creation: false
emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
disable-animations: true
target: 'aosp_atd'
channel: canary # Necessary for ATDs
script: echo "Generated AVD snapshot for caching."

agp-matrix-compatibility:
timeout-minutes: 30
runs-on: macos-latest
Expand Down Expand Up @@ -76,15 +52,7 @@ jobs:
- name: Make stop
run: make stop

- name: AVD cache
uses: actions/cache@v3
id: avd-cache
with:
path: |
~/.android/avd/*
~/.android/adb*
key: aosp_atd

# We tried to use the cache action to cache gradle stuff, but it made tests slower and timeout
- name: Run instrumentation tests
uses: reactivecircus/android-emulator-runner@d94c3fbe4fe6a29e4a5ba47c12fb47677c73656b # pin@v2
with:
Expand Down

0 comments on commit 4bac687

Please sign in to comment.