From 490c44564da58696e9cbb7742dbe029bf1aa0fbd Mon Sep 17 00:00:00 2001 From: Miro Stauder Date: Wed, 10 May 2023 08:18:08 +0200 Subject: [PATCH] Update ci-repltests.yml --- .github/workflows/ci-repltests.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-repltests.yml b/.github/workflows/ci-repltests.yml index 22530a96d..254717579 100644 --- a/.github/workflows/ci-repltests.yml +++ b/.github/workflows/ci-repltests.yml @@ -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() }}