Skip to content

Commit

Permalink
Calculate image type
Browse files Browse the repository at this point in the history
  • Loading branch information
TWiStErRob committed Jul 9, 2023
1 parent 7fd3d4a commit 9a2064b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/instrumentation-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ jobs:
uses: ./.github/workflows/instrumentation.yml
with:
android-api: ${{ matrix.api }}
android-image-type: ${{ matrix.image }}
android-image-arch: ${{ matrix.arch }}
strategy:
fail-fast: false
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/instrumentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ on:
description: "Android API level to run the tests on. See https://apilevels.com/. [14, ..., 34]"
# Some are not available: https://issuetracker.google.com/issues/267458959
android-image-type:
required: true
required: false
type: string
description: "Android emulator image type to run the tests on. [default, google_apis]"
default: 'default'
default: ${{ inputs.android-api >= 32 && 'google_apis' || 'default' }}
# Nowadays with AndroidX libraries having API 14 as minimum,
# API 15 is the first possible emulator that works well on GitHub Actions' architectures:
# > system-images;android-10;default;armeabi-v7a
Expand Down

0 comments on commit 9a2064b

Please sign in to comment.