File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -183,7 +183,11 @@ jobs:
183183 elapsed=0
184184 while [ $elapsed -lt $max_wait ]; do
185185 if curl -s -f http://localhost:9080 > /dev/null 2>&1; then
186- echo "✅ Web server is ready after $elapsed seconds!"
186+ echo "✅ Web server is ready on port 9080 after $elapsed seconds!"
187+ break
188+ fi
189+ if curl -s -f http://localhost:8080 > /dev/null 2>&1; then
190+ echo "✅ Web server is ready on port 8080 after $elapsed seconds!"
187191 break
188192 fi
189193 if ! kill -0 $WOKWI_PID 2>/dev/null; then
Original file line number Diff line number Diff line change 1818
1919echo " Starting Wokwi simulator..."
2020echo " Timeout: ${WOKWI_TIMEOUT} seconds"
21- echo " Web server will be available at http://localhost:9080 "
21+ echo " Web server will be available at http://localhost:8080 "
2222echo " Serial output will be displayed below"
2323echo " =================================="
2424echo " "
Original file line number Diff line number Diff line change @@ -17,5 +17,5 @@ file = "partitions.bin"
1717
1818[[net .forward ]]
1919# Forward the web server port
20- from = " localhost:9080 "
20+ from = " localhost:8080 "
2121to = " target:80"
You can’t perform that action at this time.
0 commit comments