From 1741ca9329dca85a602b1d25c368efa13c610b6d Mon Sep 17 00:00:00 2001 From: Josh Feinberg <15068619+joshafeinberg@users.noreply.github.com> Date: Fri, 11 Aug 2023 13:22:46 -0500 Subject: [PATCH] Update emulator script to use API 31 --- .github/workflows/ci_test_and_publish.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_test_and_publish.yml b/.github/workflows/ci_test_and_publish.yml index 453f31e7..40e6c44e 100644 --- a/.github/workflows/ci_test_and_publish.yml +++ b/.github/workflows/ci_test_and_publish.yml @@ -64,8 +64,13 @@ jobs: - name: Run tests uses: reactivecircus/android-emulator-runner@v2 with: - api-level: 31 - script: ./gradlew assemble testCoverage + api-level: 31 + profile: Nexus 6 + arch: x86_64 + force-avd-creation: false + emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none + disable-animations: true + script: ./gradlew assemble testCoverage env: API_LEVEL: ${{ matrix.api-level }} - name: Upload code coverage