Skip to content

Commit 6308df9

Browse files
committed
shorter wait time (1min), less verbose
1 parent aa580c3 commit 6308df9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/qemu-e2e-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -161,8 +161,8 @@ jobs:
161161
echo ""
162162
echo "=== Testing HTTP Server Connectivity ==="
163163
164-
# Wait up to 2 minutes for HTTP server to respond
165-
for i in {1..60}; do
164+
# Wait up to 1 minute for HTTP server to respond
165+
for i in {1..30}; do
166166
if curl -f -m 5 http://localhost:8080/ > /dev/null 2>&1; then
167167
echo "✓ SUCCESS: WLED HTTP server is responding!"
168168
@@ -196,8 +196,8 @@ jobs:
196196
echo ""
197197
echo "✗ ERROR: HTTP server not responding after 2 minutes"
198198
echo ""
199-
echo "=== QEMU Output (last 200 lines) ==="
200-
tail -200 qemu-output.log || true
199+
echo "=== QEMU Output (last 80 lines) ==="
200+
tail -80 qemu-output.log || true
201201
echo ""
202202
echo "=== Checking for ESP32 exceptions/crashes ==="
203203
if grep -i "exception\|abort\|backtrace\|panic" qemu-output.log > /dev/null 2>&1; then

0 commit comments

Comments
 (0)