diff options
author | Harsh Shandilya <msfjarvis@gmail.com> | 2020-06-23 18:51:47 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2020-06-26 13:23:20 +0530 |
commit | 9d76eec76eaef6f59c65e081f880d8128e644921 (patch) | |
tree | 20b972739e5a50c76c9ff6ea90b7e860181577f8 | |
parent | e21c8cd0fcad155529fca7aeaee1f24ecf758502 (diff) |
Remove API 30 from pull request test matrix (#879)
* 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: bump android-emulator-runner action
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
(cherry picked from commit eb31385102f38ed3c378b210650d4c8dd1785ff8)
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
-rw-r--r-- | .github/workflows/pull_request.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index e6d49b6e..ccd77e8b 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.11.0 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 |