Skip to content

Commit

Permalink
Update ci-repltests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mirostauder authored May 10, 2023
1 parent fe1b69c commit 490c445
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci-repltests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,16 @@ jobs:
cd proxysql_repl_tests
#./exec_repl_test.sh 5.7 no-ssl debezium
./exec_all_repl_tests.sh
RC=$?
RCS=0
for N in {1..5}; do
./exec_all_repl_tests.sh
RC=$?
RCS=$(( $RCS + $RC ))
done
#./docker-compose-destroy.bash
sudo chmod -R 777 ${{ github.workspace }}/*
exit $RC
exit $RCS
- name: Archive artifacts
if: ${{ failure() }}
Expand Down

0 comments on commit 490c445

Please sign in to comment.