Skip to content

Commit

Permalink
ci: Fix failing instrumentation tests in CI
Browse files Browse the repository at this point in the history
Tests for some API levels were failing for not having Google Play
services available.
Try to use google_apis target for all APIs in CI instrumentation tests.
  • Loading branch information
devinbileck committed Feb 9, 2024
1 parent be312b6 commit b6f9ea3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/get-avd-info/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ runs:
run: echo "arch=$(if [ ${{ inputs.api-level }} -ge 30 ]; then echo x86_64; else echo x86; fi)" >> $GITHUB_OUTPUT
shell: bash
- id: get-avd-target
run: echo "target=$(if [ ${{ inputs.api-level }} -ge 32 ]; then echo google_apis; else echo default; fi)" >> $GITHUB_OUTPUT
run: echo "target=google_apis" >> $GITHUB_OUTPUT
shell: bash

0 comments on commit b6f9ea3

Please sign in to comment.