summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-06-17 18:04:47 +0000
committerHolger Levsen <holger@layer-acht.org>2015-06-18 00:46:17 +0200
commit4ed8e3b32152f9a85a83ad1efd2fda1c6eb11743 (patch)
treeb268a8232acdb5e981462457bff06e82b7be784c /bin
parent698e810dcbe4d8a046924694cb04e81c98c95e96 (diff)
downloadjenkins.debian.net-4ed8e3b32152f9a85a83ad1efd2fda1c6eb11743.tar.xz
reproducible: build: try harder to get debbindiff saving files in a defined temporary directory
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_build.sh5
1 files changed, 2 insertions, 3 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh
index 38abb2d4..693ccf49 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,7 +247,7 @@ call_debbindiff() {
( timeout $TIMEOUT schroot \
--directory $TMPDIR \
-c source:jenkins-reproducible-${DBDSUITE}-debbindiff \
- debbindiff -- \
+ TMPDIR=$TEMP debbindiff -- \
--html ./${DBDREPORT} \
./b1/${SRCPACKAGE}_${EVERSION}_${ARCH}.changes \
./b2/${SRCPACKAGE}_${EVERSION}_${ARCH}.changes 2>&1 \
@@ -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