From d400c537b6db01e6e9048f25f2bc857dc21d9b24 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Tue, 23 Jun 2020 18:27:02 +0530 Subject: [PATCH 1/2] Revert "github: run instrumentation tests against API 30 (#847)" API 30 is too flaky to be a part of our active test suite. This reverts commit bf33fb2c88a208931340201e95a524b274d70b31. --- .github/workflows/pull_request.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index e6d49b6eb..0acb946b2 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -6,7 +6,7 @@ jobs: runs-on: macos-latest strategy: matrix: - api-level: [23, 29, 30] + api-level: [23, 29] variant: [Debug, Release] steps: @@ -71,10 +71,10 @@ jobs: - name: Run instrumentation tests if: ${{ steps.service-changed.outputs.result == 'true' }} - uses: reactivecircus/android-emulator-runner@v2.10.0 + uses: reactivecircus/android-emulator-runner@v2 with: api-level: ${{ matrix.api-level }} - target: google_apis + target: default script: | adb shell settings put global animator_duration_scale 0 adb shell settings put global transition_animation_scale 0 From c4a4816d80f2d0612c41192afd211b90cde89c9a Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Tue, 23 Jun 2020 18:28:00 +0530 Subject: [PATCH 2/2] github: bump android-emulator-runner action Signed-off-by: Harsh Shandilya --- .github/workflows/pull_request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 0acb946b2..ccd77e8bf 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -71,7 +71,7 @@ jobs: - name: Run instrumentation tests if: ${{ steps.service-changed.outputs.result == 'true' }} - uses: reactivecircus/android-emulator-runner@v2 + uses: reactivecircus/android-emulator-runner@v2.11.0 with: api-level: ${{ matrix.api-level }} target: default