mirror of https://github.com/wolfSSL/wolfssl.git
Merge pull request #7657 from julek-wolfssl/cyrus-sasl-test-retry
Retry sasl tests as they appear to be flakypull/7822/head
commit
d2373246ad
|
@ -88,4 +88,11 @@ jobs:
|
||||||
working-directory: sasl
|
working-directory: sasl
|
||||||
run: |
|
run: |
|
||||||
make -j -C utils testsuite saslpasswd2
|
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
|
||||||
|
|
Loading…
Reference in New Issue