Skip to content

Commit 807db7f

Browse files
committed
Workaround missing default system image for Android API level 36
Google hasn't published an AOSP version of the Android system image for API level 36 yet: https://issuetracker.google.com/issues/432143095 Temporarily switch to the Google APIs variant to workaround this issue.
1 parent a9027a3 commit 807db7f

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,12 +192,16 @@ jobs:
192192
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
193193
sudo udevadm control --reload-rules
194194
sudo udevadm trigger --name-match=kvm
195-
- name: Run flutter test integration_test/webcrypto_test.dart -d android
195+
- name: Run flutter test integration_test/webcrypto_test.dart -d gphone64
196196
uses: reactivecircus/android-emulator-runner@v2
197197
with:
198198
api-level: 36
199+
# TODO: switch back to default once this is issue resolved:
200+
# https://issuetracker.google.com/issues/432143095
201+
target: google_apis
202+
arch: x86_64
199203
working-directory: ./example
200-
script: flutter test integration_test/webcrypto_test.dart -d android
204+
script: flutter test integration_test/webcrypto_test.dart -d gphone64
201205
linux-coverage:
202206
name: Linux desktop / Chrome / Firefox (coverage)
203207
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)