From a964a2cb4b0f3e59912fb927998ed5a505cba3c7 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Mon, 24 Apr 2017 13:22:14 +0200 Subject: reproducible fdroid: make fdroid_build_apps reuse the git repo Signed-off-by: Holger Levsen --- bin/reproducible_fdroid_build_apps.sh | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/bin/reproducible_fdroid_build_apps.sh b/bin/reproducible_fdroid_build_apps.sh index dc087358..e7310ed4 100755 --- a/bin/reproducible_fdroid_build_apps.sh +++ b/bin/reproducible_fdroid_build_apps.sh @@ -14,10 +14,23 @@ common_init "$@" # common code . /srv/jenkins/bin/reproducible_common.sh -# define and clean work space (differently than jenkins would normally do as we run via ssh on a different nodeā€¦) +# define and clean work space on the machine actually running the +# build. jenkins.debian.net does not use Jenkins slaves. Instead +# /srv/jenkins/bin/jenkins_master_wrapper.sh runs this script on the +# slave using a directl call to ssh. WORKSPACE=$BASE/fdroid-build -rm $WORKSPACE -rf -mkdir -p $WORKSPACE +if [ -e $WORKSPACE/.git ]; then + # reuse the git repo if possible, to keep all the setup in fdroiddata/ + git clean -fdx + git reset --hard + git checkout master + git clean -fdx + git reset --hard +else + rm -rf $WORKSPACE + git clone https://gitlab.com/eighthave/fdroidserver-for-jenkins.debian.net.git $WORKSPACE +fi +cd $WORKSPACE cleanup_all() { echo "$(date -u) - cleanup in progress..." -- cgit v1.2.3-54-g00ecf