Skip to content

Commit

Permalink
ci: expand sleep comments a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
larpon committed Sep 22, 2024
1 parent ab9c5d3 commit 8236f27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci_emulator_run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ jobs:
# Output test
echo "Testing if v/examples/tetris can run..."
vab -g --package-id "io.v.ci.vab.apk.examples.tetris" run v/examples/tetris
sleep 5 # give the emulator a little time to start...
sleep 5 # give the emulator a little time to start the application...
adb -e logcat -d > /tmp/logcat.dump.txt
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
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:
# Output test
echo "Testing if ui/examples/calculator can run..."
vab -g --package-id "io.v.ui.ci.examples.calculator" run ui/examples/calculator.v
sleep 5 # give the emulator a little time to start...
sleep 5 # give the emulator a little time to start the application...
adb -e logcat -d > /tmp/logcat.dump.txt
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
Expand Down

0 comments on commit 8236f27

Please sign in to comment.