From: Daniel Martí Date: Thu, 25 Feb 2016 14:47:31 +0000 (+0000) Subject: jenkins: update fdroiddata if existing X-Git-Tag: 0.7.0~88^2~2 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=896d7240aa0395db02e1678d473ebabe26369688;p=fdroidserver.git jenkins: update fdroiddata if existing Also, when cloning, no need to specify the branch and only download that one. We already have only a single branch. And forcing master isn't necessary. --- diff --git a/jenkins-build-makebuildserver b/jenkins-build-makebuildserver index 76a13a25..8afa6220 100755 --- a/jenkins-build-makebuildserver +++ b/jenkins-build-makebuildserver @@ -49,10 +49,14 @@ echo "apt_package_cache = True" >> $WORKSPACE/makebuildserver.config.py ./makebuildserver # this can be handled in the jenkins job, or here: -if [ ! -e fdroiddata ]; then - git clone --depth 1 --branch master --single-branch \ - https://gitlab.com/fdroid/fdroiddata.git fdroiddata +if [ -e fdroiddata ]; then + cd fdroiddata + git pull + cd .. +else + git clone --depth 1 https://gitlab.com/fdroid/fdroiddata.git fdroiddata fi + cd fdroiddata echo "build_server_always = True" > config.py ../fdroid build info.guardianproject.checkey