Merge pull request #7657 from julek-wolfssl/cyrus-sasl-test-retry

Retry sasl tests as they appear to be flaky
This commit is contained in:
David Garske
2024-08-01 11:18:54 -07:00
committed by GitHub

View File

@ -88,4 +88,11 @@ jobs:
working-directory: sasl
run: |
make -j -C utils testsuite saslpasswd2
$GITHUB_WORKSPACE/osp/cyrus-sasl/${{ matrix.ref }}/run-tests.sh
# Retry up to five times
for i in {1..5}; do
TEST_RES=0
$GITHUB_WORKSPACE/osp/cyrus-sasl/${{ matrix.ref }}/run-tests.sh || TEST_RES=$?
if [ "$TEST_RES" -eq "0" ]; then
break
fi
done