Skip to content

Commit

Permalink
ci: adjust the life sign mark in emulator run (#273)
Browse files Browse the repository at this point in the history
  • Loading branch information
larpon authored Nov 18, 2023
1 parent adaa141 commit 50bb9eb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci_emulator_run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit 50bb9eb

Please sign in to comment.