Skip to content

Commit

Permalink
Retry sasl tests as they appear to be flaky
Browse files Browse the repository at this point in the history
  • Loading branch information
julek-wolfssl committed Jun 24, 2024
1 parent be68ba4 commit c55932f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/cyrus-sasl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit c55932f

Please sign in to comment.