Skip to content

Commit

Permalink
Update AVD cache path
Browse files Browse the repository at this point in the history
  • Loading branch information
rfc2822 committed Mar 1, 2024
1 parent d5ee8b8 commit c56961c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/test-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,19 +44,21 @@ jobs:
- name: Cache AVD
uses: actions/cache@v4
with:
path: |
~/.android/avd
~/.android/adb*
path: ~/.avd
key: avd-${{ hashFiles('lib/build.gradle.kts') }} # gradle-managed devices are defined there

- name: Run device tests
run: ./gradlew --no-daemon virtualCheck

- name: DEBUG Log file names
run: find ~ >>files.txt

- name: Archive results
uses: actions/upload-artifact@v4
if: always()
with:
name: test-results
path: |
files.txt
lib/build/reports
overwrite: true

0 comments on commit c56961c

Please sign in to comment.