diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-09-06 14:40:50 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-09-06 14:44:11 +0200 |
commit | 605489040a5c4df7b119ba4dea80728c46136755 (patch) | |
tree | 50dd29bbbeaf21f42b971c699f4b480cddabe0d2 /bin | |
parent | ce16a75c785cb97137d3d0328fd60374442c9c70 (diff) | |
download | jenkins.debian.net-605489040a5c4df7b119ba4dea80728c46136755.tar.xz |
reproducible: handle rsync problems with remote builds
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_build.sh | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index 273291db..479ba1af 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -520,6 +520,11 @@ check_buildinfo() { /srv/jenkins/bin/abort.sh fi rsync -e "ssh -p $PORT1" -r $NODE1:$TMPDIR/b1 $TMPDIR/ + RESULT=$? + if [ $RESULT -ne 0 ] ; then + echo "Unhandled error when rsyncing remote build job results, please investigate." + /srv/jenkins/bin/abort.sh + fi ls -R $TMPDIR ssh -p $PORT1 $NODE1 "rm -r $TMPDIR" fi @@ -551,7 +556,12 @@ build_rebuild() { /srv/jenkins/bin/abort.sh fi rsync -e "ssh -p $PORT1" -r $NODE1:$TMPDIR/b1 $TMPDIR/ - ls -R $TMPDIR + RESULT=$? + if [ $RESULT -ne 0 ] ; then + echo "Unhandled error when rsyncing remote build job results, please investigate." + /srv/jenkins/bin/abort.sh + fi + ls -R $TMPDIR ssh -p $PORT1 $NODE1 "rm -r $TMPDIR" fi if [ ! -f b1/${SRCPACKAGE}_${EVERSION}_${ARCH}.changes ] && [ -f b1/${SRCPACKAGE}_*_${ARCH}.changes ] ; then @@ -580,6 +590,11 @@ build_rebuild() { /srv/jenkins/bin/abort.sh fi rsync -e "ssh -p $PORT2" -r $NODE2:$TMPDIR/b2 $TMPDIR/ + RESULT=$? + if [ $RESULT -ne 0 ] ; then + echo "Unhandled error when rsyncing remote build job results, please investigate." + /srv/jenkins/bin/abort.sh + fi ls -R $TMPDIR ssh -p $PORT2 $NODE2 "rm -r $TMPDIR" fi |