Skip to content

Commit cd7f27c

Browse files
committed
Try to run the Android emulator
1 parent 395c2b5 commit cd7f27c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616
- name: 'macOS 14'
1717
os: 'macos-14'
1818
ANDROID_API: 28
19-
ANDROID_ARCH: 'armeabi-v7a'
19+
ANDROID_ARCH: 'arm64-v8a'
2020
- name: 'macOS 15'
2121
os: 'macos-15'
2222
ANDROID_API: 28
23-
ANDROID_ARCH: 'armeabi-v7a'
23+
ANDROID_ARCH: 'arm64-v8a'
2424
fail-fast: false
2525
runs-on: ${{ matrix.os }}
2626
env:
@@ -38,7 +38,7 @@ jobs:
3838
echo "y" | $ANDROID_HOME/emulator/emulator -list-avds
3939
echo "Starting emulator"
4040
# Start emulator in background
41-
nohup $ANDROID_HOME/emulator/emulator -avd test -no-snapshot -no-window -no-audio -no-boot-anim -accel off -no-metrics &
41+
nohup $ANDROID_HOME/emulator/emulator-headless -avd test -no-snapshot -no-window -no-audio -no-boot-anim -no-accel -no-metrics &
4242
# Fixed quoting around "\r"
4343
$ANDROID_HOME/platform-tools/adb wait-for-device shell 'while [[ -z $(getprop sys.boot_completed | tr -d "\r") ]]; do sleep 1; done; input keyevent 82'
4444
$ANDROID_HOME/platform-tools/adb devices

0 commit comments

Comments
 (0)