From d0069a808bd2f1f1647196e192a4d2ae6cf125b4 Mon Sep 17 00:00:00 2001 From: Gregor MacLennan Date: Fri, 15 Nov 2024 10:21:00 +0000 Subject: [PATCH] fix emu command --- .github/workflows/maestro.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/maestro.yml b/.github/workflows/maestro.yml index 3a8fe3338..826f06506 100644 --- a/.github/workflows/maestro.yml +++ b/.github/workflows/maestro.yml @@ -88,7 +88,7 @@ jobs: timeout-minutes: 5 run: | adb devices - nohup $ANDROID_HOME/emulator/emulator -avd emu -cores 2 -no-window -gpu swiftshader_indirect -memory 2048 -skip-adb-auth -ports 5554,5555 -no-snapshot -show-kernel -noaudio -no-boot-anim -logcat -logcat-output "logcat.log" -accel off -camera-back emulated -qemu -cpu max -machine gic-version=2 & + nohup $ANDROID_HOME/emulator/emulator -avd emu -cores 2 -no-window -gpu swiftshader_indirect -memory 2048 -skip-adb-auth -ports 5554,5555 -no-snapshot -show-kernel -noaudio -no-boot-anim -logcat -accel off -camera-back emulated -qemu -cpu max -machine gic-version=2 &> emu.log & echo "Emulator started" shell: bash @@ -116,7 +116,8 @@ jobs: - name: Emulator logs if: always() run: | - cat logcat.log + jobs + cat emu.log shell: bash - name: Upload Maestro test artifacts