CI: updated sync test's error check

This commit is contained in:
SChernykh
2025-10-11 16:31:21 +02:00
parent f14e6fd08e
commit 977cd73bbd

View File

@@ -1,6 +1,7 @@
#!/bin/bash
grep 'ERROR ' p2pool.log | grep -E -v 'submit_block|failed to bind' > errors.log
grep 'ERROR ' p2pool.log | grep -E -v 'submit_block|failed to bind|ZMQ is not running' > errors.log
if [ -s errors.log ]; then
cat errors.log
exit 1
fi