Skip to content

Commit

Permalink
[CI] Use normal runners instead of large runners for emulator tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rfc2822 committed Apr 3, 2024
1 parent 4d35f8e commit 40d96c3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: Tests without emulator
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
Expand All @@ -22,12 +22,12 @@ jobs:

test_on_emulator:
name: Tests with emulator
runs-on: ubuntu-latest-4-cores
runs-on: ubuntu-latest
strategy:
matrix:
api-level: [ 31 ]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
Expand All @@ -48,4 +48,4 @@ jobs:
key: avd-${{ hashFiles('lib/build.gradle.kts') }} # gradle-managed devices are defined there

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

0 comments on commit 40d96c3

Please sign in to comment.