diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-05-01 19:42:44 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-05-01 19:42:44 +0300 |
commit | 01539587194321e513c30d35c1960acd58866c73 (patch) | |
tree | 602bc00cf7e8de0ab2a6a80b6132b129fa7e67fd | |
parent | 6b1f40c659dacf8b2bda8f8f96d39fe78e428887 (diff) | |
download | plus-01539587194321e513c30d35c1960acd58866c73.tar.gz plus-01539587194321e513c30d35c1960acd58866c73.tar.bz2 plus-01539587194321e513c30d35c1960acd58866c73.tar.xz plus-01539587194321e513c30d35c1960acd58866c73.zip |
In ci scripts add also protection against git clone failures.
-rwxr-xr-x | tools/ci/jobs/mplint.sh | 2 | ||||
-rwxr-xr-x | tools/ci/scripts/init.sh | 29 |
2 files changed, 30 insertions, 1 deletions
diff --git a/tools/ci/jobs/mplint.sh b/tools/ci/jobs/mplint.sh index da824c985..c6ca9543d 100755 --- a/tools/ci/jobs/mplint.sh +++ b/tools/ci/jobs/mplint.sh @@ -13,7 +13,7 @@ export CXXFLAGS="-std=gnu++11" do_init -git clone https://gitlab.com/manaplus/mplint.git +gitclone https://gitlab.com/manaplus/mplint.git cd mplint run_configure_simple run_make diff --git a/tools/ci/scripts/init.sh b/tools/ci/scripts/init.sh index 64e11f3b0..7f48bb0aa 100755 --- a/tools/ci/scripts/init.sh +++ b/tools/ci/scripts/init.sh @@ -67,6 +67,35 @@ function aptget_install { fi } +function gitclone { + git clone $* + if [ "$?" != 0 ]; then + sleep 1s + git clone $* + if [ "$?" != 0 ]; then + sleep 3s + git clone $* + if [ "$?" != 0 ]; then + sleep 5s + git clone $* + if [ "$?" != 0 ]; then + sleep 10s + git clone $* + if [ "$?" != 0 ]; then + sleep 15s + git clone $* + if [ "$?" != 0 ]; then + sleep 20s + git clone $* + fi + fi + fi + fi + fi + fi + check_error $? +} + function check_error { if [ "$1" != 0 ]; then cat $ERRFILE |