1
0

DBG retry until fail

This commit is contained in:
Olivier Wilkinson (reivilibre)
2022-07-05 12:18:26 +01:00
parent 30627554d4
commit 7fd218ad8b

View File

@@ -34,12 +34,12 @@ jobs:
- run: |
set -o pipefail
synapse/scripts-dev/complement.sh --build-only
#while :; do
while :; do
POSTGRES=${{ (matrix.database == 'Postgres') && 1 || '' }} WORKERS=${{ (matrix.arrangement == 'workers') && 1 || '' }} SYNAPSE_TEST_LOG_LEVEL=DEBUG COMPLEMENT_DIR=`pwd`/complement synapse/scripts-dev/complement.sh -f -run TestRestrictedRoomsLocalJoin -json 2>&1 | gotestfmt | tee /tmp/xxx
#if grep FAIL /tmp/xxx; then
# break
#fi
#done
if grep FAIL /tmp/xxx; then
break
fi
done
shell: bash
name: Run Complement Tests