From cfaffdf21321f39d3b2a637bbb34688e9fc3ec02 Mon Sep 17 00:00:00 2001 From: Gleb Date: Thu, 5 Dec 2024 14:16:47 -0800 Subject: [PATCH] tmp: remove health checks --- .github/workflows/bindings-ts.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/bindings-ts.yml b/.github/workflows/bindings-ts.yml index 7fef8f31c..f4f13679c 100644 --- a/.github/workflows/bindings-ts.yml +++ b/.github/workflows/bindings-ts.yml @@ -32,7 +32,7 @@ jobs: colima start - name: Run quickstart run: | - docker run -d --name quickstart -p 8000:8000 -e ENABLE_LOGS=true -e NETWORK=local -e ENABLE_SOROBAN_RPC=true --health-cmd "curl --no-progress-meter --fail-with-body -X POST \"http://localhost:8000/soroban/rpc\" -H 'Content-Type: application/json' -d '{\"jsonrpc\":\"2.0\",\"id\":8675309,\"method\":\"getNetwork\"}' && curl --no-progress-meter \"http://localhost:8000/friendbot\" | grep '\"invalid_field\": \"addr\"'" --health-interval 10s --health-timeout 5s --health-retries 50 stellar/quickstart:testing + docker run -d --name quickstart -p 8000:8000 -e ENABLE_LOGS=true -e NETWORK=local -e ENABLE_SOROBAN_RPC=true stellar/quickstart:testing - run: | until [ "`docker inspect -f {{.State.Health.Status}} quickstart`"=="healthy" ]; do sleep 0.1;