Unverified Commit ef3440b8 authored by Casey Hillers's avatar Casey Hillers Committed by GitHub

[fuchsia] Test wait for device to be up after pave (#64819)

parent b093edaf
......@@ -77,6 +77,13 @@ ssh-keygen -y -f $pkey > key.pub
fuchsia_ctl pave -i $1 --public-key "key.pub"
echo "$(date) END:PAVING --------------------------------------------"
echo "$(date) START:WAIT_DEVICE_READY -------------------------------"
for i in {1..10}; do
fuchsia_ctl ssh \
--identity-file $pkey \
-c "echo up" && break || sleep 15;
done
echo "$(date) END:WAIT_DEVICE_READY ---------------------------------"
echo "$(date) START:PUSH_PACKAGES -------------------------------"
fuchsia_ctl push-packages \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment