From 50bb9ebab1167543394217e28906503b31fa70de Mon Sep 17 00:00:00 2001 From: Larpon Date: Sat, 18 Nov 2023 17:26:03 +0100 Subject: [PATCH] ci: adjust the life sign mark in emulator run (#273) --- .github/workflows/ci_emulator_run.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci_emulator_run.yml b/.github/workflows/ci_emulator_run.yml index 8c2ba2a0..b13be68b 100644 --- a/.github/workflows/ci_emulator_run.yml +++ b/.github/workflows/ci_emulator_run.yml @@ -127,8 +127,8 @@ jobs: vab -g --package-id "io.v.ci.vab.apk.examples.tetris" run v/examples/tetris sleep 5 adb -e logcat -d > /tmp/logcat.dump.txt - echo "Looking for traces of SOKOL_APP ok ..." - cat /tmp/logcat.dump.txt | grep -q 'SOKOL_APP: ... ok'; if [ ! $? -eq 0 ]; then cat /tmp/logcat.dump.txt; fi + echo "Looking for traces of BDWGC" + cat /tmp/logcat.dump.txt | grep -q 'BDWGC : Grow'; if [ ! $? -eq 0 ]; then cat /tmp/logcat.dump.txt; fi # Remove app in case cache is run echo "Uninstalling v/examples/tetris" @@ -164,8 +164,8 @@ jobs: vab -g --package-id "io.v.ui.ci.examples.calculator" run ui/examples/calculator.v sleep 5 adb -e logcat -d > /tmp/logcat.dump.txt - echo "Looking for traces of SOKOL_APP ok ..." - cat /tmp/logcat.dump.txt | grep -q 'SOKOL_APP: ... ok'; if [ ! $? -eq 0 ]; then cat /tmp/logcat.dump.txt; fi + echo "Looking for traces of BDWGC" + cat /tmp/logcat.dump.txt | grep -q 'BDWGC : Grow'; if [ ! $? -eq 0 ]; then cat /tmp/logcat.dump.txt; fi # Remove app in case cache is run echo "Uninstalling ui/examples/calculator"