mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
6564fcbf6c
* fix: typo to build amd64 for macos * Implement E2E test for mini constellation Signed-off-by: Fabian Kammel <fk@edgeless.systems>
14 lines
293 B
Bash
Executable File
14 lines
293 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set +e
|
|
echo "Waiting for SSH server to come online..."
|
|
|
|
# Wait for SSH to come online, at most 10*30s=5min
|
|
COUNT=0
|
|
until ssh -i id_rsa -o StrictHostKeyChecking=no adminuser@"${AZURE_VM_IP}" date || [ $COUNT -eq 10 ]; do
|
|
sleep 30
|
|
((COUNT++))
|
|
done
|
|
|
|
echo "Done waiting."
|