diff --git a/.github/workflows/android_main.yml b/.github/workflows/android_main.yml index db3639260679..58107d0a77a0 100644 --- a/.github/workflows/android_main.yml +++ b/.github/workflows/android_main.yml @@ -79,20 +79,12 @@ jobs: runs-on: ubuntu-22.04 strategy: fail-fast: false - # Make sure the matrix here and in cache_AVD_images.yml is the same matrix: include: - # Oldest x86_64 - - arch: x86_64 - api-level: 23 - - arch: x86_64 - api-level: 29 - # API-30+ tests are failing because play services init something something - - arch: x86_64 - api-level: 30 - # API-32+ tests are failing because storage permissions something something - - arch: x86_64 - api-level: 32 + - { arch: x86, api-level: 23 } + - { arch: x86, api-level: 29 } + - { arch: x86, api-level: 30 } + - { arch: x86, api-level: 32 } steps: - name: checkout uses: actions/checkout@v4