From 4c1f6560f60d0a03c29ee5bc3b5b2989146c80e4 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Wed, 22 Jun 2016 21:29:04 +0300 Subject: In ci scripts at first try clone from forks and if failed, from original repos. --- tools/ci/scripts/init.sh | 29 ++++++++++++++++++++++++----- 1 file changed, 24 insertions(+), 5 deletions(-) (limited to 'tools') diff --git a/tools/ci/scripts/init.sh b/tools/ci/scripts/init.sh index 677a3af..01df562 100755 --- a/tools/ci/scripts/init.sh +++ b/tools/ci/scripts/init.sh @@ -65,14 +65,33 @@ function aptget_install { fi } +function gitclone1 { + echo git clone $2 $3 + git clone $2 $3 + if [ "$?" != 0 ]; then + echo git clone $1 $3 + git clone $1 $3 + return $? + fi + return $? +} + function gitclone { - git clone $* + export name1=$1/$2 + export name2=${CI_BUILD_REPO##*@} + export name2=https://${name2%/*}/$2 + + gitclone1 "$name1" "$name2" $3 if [ "$?" != 0 ]; then sleep 1s - git clone $* + gitclone1 "$name1" "$name2" $3 if [ "$?" != 0 ]; then sleep 3s - git clone $* + gitclone1 "$name1" "$name2" $3 + if [ "$?" != 0 ]; then + sleep 5s + gitclone1 "$name1" "$name2" $3 + fi fi fi check_error $? @@ -151,12 +170,12 @@ function run_mplint { function clone_tool { rm -rf tools - gitclone https://gitlab.com/evol/evol-tools.git tools + gitclone https://gitlab.com/evol evol-tools.git tools } function clone_servercode { rm -rf server-code - gitclone https://gitlab.com/evol/hercules.git server-code + gitclone https://gitlab.com/evol hercules.git server-code } function build_init { -- cgit v1.2.3-60-g2f50