mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 18:00:17 +01:00
5cf736eb88
* OPS: improve CI
27 lines
706 B
Bash
27 lines
706 B
Bash
#!/bin/bash
|
|
|
|
# Originally written by Ralf Kistner <ralf@embarkmobile.com>, but placed in the public domain
|
|
|
|
set +e
|
|
|
|
bootanim=""
|
|
failcounter=0
|
|
timeout_in_sec=300 # 5 minutes
|
|
|
|
until [[ "$bootanim" =~ "stopped" ]]; do
|
|
bootanim=`adb -e shell getprop init.svc.bootanim 2>&1 &`
|
|
if [[ "$bootanim" =~ "device not found" || "$bootanim" =~ "device offline"
|
|
|| "$bootanim" =~ "running" || "$bootanim" =~ "error: no emulators found" ]]; then
|
|
let "failcounter += 1"
|
|
echo "Waiting for emulator to start"
|
|
if [[ $failcounter -gt timeout_in_sec ]]; then
|
|
echo "Timeout ($timeout_in_sec seconds) reached; failed to start emulator"
|
|
exit 1
|
|
fi
|
|
fi
|
|
sleep 1
|
|
done
|
|
|
|
echo "Emulator is ready"
|
|
|