diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-05-19 22:13:33 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-05-19 22:13:33 +0200 |
commit | cfb42ca5bfda4ef97b48ad7919939aded83e0c6b (patch) | |
tree | 50829e0e650b5954974a378e1d2cc1f14ecd7f98 | |
parent | 39aadeff819a7b76e5b3aba3802a5233fb130803 (diff) | |
download | jenkins.debian.net-cfb42ca5bfda4ef97b48ad7919939aded83e0c6b.tar.xz |
reproducible: force debugging mode for some false not-for-us packages
-rwxr-xr-x | bin/reproducible_build.sh | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index 8027c7a0..875e9c67 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -300,10 +300,13 @@ choose_package () { SRCPKGID=$(echo $RESULT|cut -d "|" -f2) SRCPACKAGE=$(echo $RESULT|cut -d "|" -f3) # force debug mode for certain packages - if [ $SRCPACKAGE = "xxxxxxx" ] ; then - export DEBUG=true - irc_message "$BUILD_URL/console available to debug $SRCPACKAGE build in $SUITE" - fi + case $SRCPACKAGE in + mig|libdatetime-format-http-perl|libio-html-perl|libio-pty-easy-perl|libnet-scp-expect-perl|libsocket-perl) + export DEBUG=true + irc_message "$BUILD_URL/console available to debug $SRCPACKAGE build in $SUITE" + ;; + *) ;; + esac SCHEDULED_DATE=$(echo $RESULT|cut -d "|" -f4) SAVE_ARTIFACTS=$(echo $RESULT|cut -d "|" -f5) NOTIFY=$(echo $RESULT|cut -d "|" -f6) |