diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-09-24 11:02:09 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-09-24 11:02:09 +0200 |
commit | 432a2913ef86f2b540751f22d4f1a000d7c54384 (patch) | |
tree | 37be302ca7278622a7ab6f84067ea0b76386eb54 /bin | |
parent | f609875ae4e43fbf28db453b279e298eea7aaa1f (diff) | |
download | jenkins.debian.net-432a2913ef86f2b540751f22d4f1a000d7c54384.tar.xz |
reproducible: keep diffp results and provide them for download
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_build.sh | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index 3e28e262..02244b3a 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -53,9 +53,10 @@ for SRCPACKAGE in "$@" ; do dcmd rm ${SRCPACKAGE}_*.dsc set -e cat b1/${SRCPACKAGE}_*.changes - TMPFILE=$(mktemp) - ./misc.git/diffp b1/${SRCPACKAGE}_*.changes b2/${SRCPACKAGE}_*.changes | tee ${TMPFILE} - if ! $(grep -qv '^\*\*\*\*\*' ${TMPFILE}) ; then + mkdir -p results + LOGFILE=./results/$(ls -1 "b1/${SRCPACKAGE}_*.changes" | head -1 | cut -d "/" -f2-).diffp + ./misc.git/diffp b1/${SRCPACKAGE}_*.changes b2/${SRCPACKAGE}_*.changes | tee ${LOGFILE} + if ! $(grep -qv '^\*\*\*\*\*' ${LOGFILE}) ; then figlet ${SRCPACKAGE} echo echo "${SRCPACKAGE} build successfull." @@ -66,7 +67,7 @@ for SRCPACKAGE in "$@" ; do let "COUNT_BAD=COUNT_BAD+1" BAD="${SRCPACKAGE} ${BAD}" fi - rm b1 b2 ${TMPFILE} -rf + rm b1 b2 -rf fi fi |