diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-06-17 23:04:12 +0000 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-06-18 12:00:54 +0200 |
commit | 752bc4db0d48be2fb0454b645469c945c9326d9d (patch) | |
tree | e1e95763d6039fabf9e691995dcac69fba027835 /bin | |
parent | 75ade76a6ca4c73cf4b7d3de06358d64d54510c0 (diff) | |
download | jenkins.debian.net-752bc4db0d48be2fb0454b645469c945c9326d9d.tar.xz |
reproducible: build: (re-try) harder to get debbindiff saving files in a defined temporary directory
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_build.sh | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index 38abb2d4..a8d1f48e 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -238,7 +238,7 @@ call_debbindiff() { DBDSUITE="unstable" fi # TEMP is recognized by python's tempfile module to create temp stuff inside - export TEMP=$(mktemp --tmpdir=$TMPDIR -d dbd-tmp-XXXXXXX) + local TEMP=$(mktemp --tmpdir=$TMPDIR -d dbd-tmp-XXXXXXX) local OLD_DEBBINDIFF_TMP_COUNT=$(find "$TEMP" -maxdepth 1 -name tmp*debbindiff | wc -l) DBDVERSION="$(schroot --directory /tmp -c source:jenkins-reproducible-${DBDSUITE}-debbindiff debbindiff -- --version 2>&1)" echo "$(date) - $DBDVERSION will be used to compare the two builds:" | tee -a ${RBUILDLOG} @@ -247,10 +247,10 @@ call_debbindiff() { ( timeout $TIMEOUT schroot \ --directory $TMPDIR \ -c source:jenkins-reproducible-${DBDSUITE}-debbindiff \ - debbindiff -- \ - --html ./${DBDREPORT} \ - ./b1/${SRCPACKAGE}_${EVERSION}_${ARCH}.changes \ - ./b2/${SRCPACKAGE}_${EVERSION}_${ARCH}.changes 2>&1 \ + -- sh -c "export TMPDIR=$TEMP ; debbindiff \ + --html $TMPDIR/${DBDREPORT} \ + $TMPDIR/b1/${SRCPACKAGE}_${EVERSION}_${ARCH}.changes \ + $TMPDIR/b2/${SRCPACKAGE}_${EVERSION}_${ARCH}.changes" \ ) 2>&1 >> $TMPLOG RESULT=$? if ! "$DEBUG" ; then set +x ; fi @@ -262,7 +262,6 @@ call_debbindiff() { if [ "$OLD_DEBBINDIFF_TMP_COUNT" != "$NEW_DEBBINDIFF_TMP_COUNT" ]; then irc_msg "debbindiff calls on $REPRODUCIBLE_URL/$SUITE/$ARCH/$SRCPACKAGE or ${BUILD_URL}console left cruft, please help investigate and fix 788568" fi - unset TEMP case $RESULT in 0) handle_reproducible |