We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 078c689 + 9861dae commit ce0af68Copy full SHA for ce0af68
.github/workflows/e2e.yaml
@@ -212,7 +212,8 @@ jobs:
212
nohup /root/lantern-box run --config /root/water-server.json > /root/water-server.log 2>&1 &"
213
214
# Wait for servers to be ready (WATER needs time to download/compile WASM)
215
- ssh $SSH_OPTS root@"$DROPLET_IP" '
+ # Note: must use bash explicitly since Ubuntu default shell is dash (no /dev/tcp support)
216
+ ssh $SSH_OPTS root@"$DROPLET_IP" bash << 'READYEOF'
217
for port in 9001 9002 9003; do
218
echo "Waiting for port $port to be ready..."
219
for i in $(seq 1 60); do
@@ -228,7 +229,7 @@ jobs:
228
229
sleep 1
230
done
231
- '
232
+ READYEOF
233
234
- name: Test ALGeneva
235
env:
0 commit comments