diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 70d3600..e18dd7d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,11 +18,10 @@ jobs: run: | docker build -t metacall/nodejs-c-liburing-example . docker run --rm -p 8000:8000 --name metacall_test -d metacall/nodejs-c-liburing-example - wget --tries=30 -v "http://localhost:8000/" +# TODO: This works on my pc.. but it seems not to work in the CI # RETRIES=0 # while true; do -# wget --server-response -q "http://localhost:8000" || true # HTTP_CODE="$(wget --server-response -q "http://localhost:8000" 2>&1 | grep "HTTP/" | awk '{print $2}')" # if [[ "$HTTP_CODE" -eq "200" ]]; then # echo "Service is ready (HTTP 200)."