File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ jobs:
115115 shell : bash
116116 run : |
117117 COUNT=0
118- ATTEMPTS=10
118+ ATTEMPTS=15
119119 until $(docker compose -f "$GITHUB_WORKSPACE/stack-orchestrator/docker/local/docker-compose-go-ethereum.yml" cp go-ethereum:/root/transaction_info/STATEFUL_TEST_DEPLOYED_ADDRESS ./STATEFUL_TEST_DEPLOYED_ADDRESS) || [[ $COUNT -eq $ATTEMPTS ]]; do echo -e "$(( COUNT++ ))... \c"; sleep 10; done
120120 [[ $COUNT -eq $ATTEMPTS ]] && echo "Could not find the successful contract deployment" && (exit 1)
121121 cat ./STATEFUL_TEST_DEPLOYED_ADDRESS
@@ -126,3 +126,10 @@ jobs:
126126 run : |
127127 docker compose -f "$GITHUB_WORKSPACE/stack-orchestrator/docker/local/docker-compose-go-ethereum.yml" exec go-ethereum /bin/bash /root/transaction_info/NEW_TRANSACTION
128128 echo $?
129+
130+ - name : Make sure we see entries in the header table
131+ shell : bash
132+ run : |
133+ rows=$(docker exec -i access-node psql -U vdbm -d vulcanize_testing_v4 -AXqtc "SELECT COUNT(*) FROM eth.header_cids")
134+ [[ "$rows" -lt "0" ]] && echo "We could not find any rows in postgres table." && (exit 1)
135+ echo $rows
You can’t perform that action at this time.
0 commit comments