summaryrefslogtreecommitdiff
path: root/tools/ci/scripts/init.sh
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-06-22 19:06:31 +0300
committerAndrei Karas <akaras@inbox.ru>2016-06-22 19:59:27 +0300
commitbf2638206182dc22d3df78c9b45c0389a7e1bb84 (patch)
tree4af6b4a79b716233e2d78c423f92658cc7105a5e /tools/ci/scripts/init.sh
parentd2970b94701dbe728dcee0df89e10bd6077c07c6 (diff)
downloadplus-bf2638206182dc22d3df78c9b45c0389a7e1bb84.tar.gz
plus-bf2638206182dc22d3df78c9b45c0389a7e1bb84.tar.bz2
plus-bf2638206182dc22d3df78c9b45c0389a7e1bb84.tar.xz
plus-bf2638206182dc22d3df78c9b45c0389a7e1bb84.zip
Allow clone mplint from fork at first and if it missing from original manaplus repo.
Diffstat (limited to 'tools/ci/scripts/init.sh')
-rwxr-xr-xtools/ci/scripts/init.sh29
1 files changed, 22 insertions, 7 deletions
diff --git a/tools/ci/scripts/init.sh b/tools/ci/scripts/init.sh
index f26c6ea48..61f2294d4 100755
--- a/tools/ci/scripts/init.sh
+++ b/tools/ci/scripts/init.sh
@@ -93,26 +93,41 @@ function aptget_install {
fi
}
+function gitclone1 {
+ echo git clone $2
+ git clone $2
+ if [ "$?" != 0 ]; then
+ echo git clone $1
+ git clone $1
+ return $?
+ fi
+ return $?
+}
+
function gitclone {
- git clone $*
+ export name1=$1/$2
+ export name2=${CI_BUILD_REPO##*@}
+ export name2=https://${name2%/*}/$2
+
+ gitclone1 "$name1" "$name2"
if [ "$?" != 0 ]; then
sleep 1s
- git clone $*
+ gitclone1 "$name1" "$name2"
if [ "$?" != 0 ]; then
sleep 3s
- git clone $*
+ gitclone1 "$name1" "$name2"
if [ "$?" != 0 ]; then
sleep 5s
- git clone $*
+ gitclone1 "$name1" "$name2"
if [ "$?" != 0 ]; then
sleep 10s
- git clone $*
+ gitclone1 "$name1" "$name2"
if [ "$?" != 0 ]; then
sleep 15s
- git clone $*
+ gitclone1 "$name1" "$name2"
if [ "$?" != 0 ]; then
sleep 20s
- git clone $*
+ gitclone1 "$name1" "$name2"
fi
fi
fi