We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e1c1b50 + 90861d9 commit d237324Copy full SHA for d237324
1 file changed
.github/workflows/cyrus-sasl.yml
@@ -88,4 +88,11 @@ jobs:
88
working-directory: sasl
89
run: |
90
make -j -C utils testsuite saslpasswd2
91
- $GITHUB_WORKSPACE/osp/cyrus-sasl/${{ matrix.ref }}/run-tests.sh
+ # Retry up to five times
92
+ for i in {1..5}; do
93
+ TEST_RES=0
94
+ $GITHUB_WORKSPACE/osp/cyrus-sasl/${{ matrix.ref }}/run-tests.sh || TEST_RES=$?
95
+ if [ "$TEST_RES" -eq "0" ]; then
96
+ break
97
+ fi
98
+ done
0 commit comments