diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-05-20 23:18:59 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-05-20 23:18:59 +0200 |
commit | 7ae12d7d01d20f6e60d6ae75e938324c607dffdd (patch) | |
tree | 9d8d763021c2e571b77fe4c0f32f1ea0b729e408 /bin | |
parent | c80c364d71e36b5ea7c622e230cb815ae80c7198 (diff) | |
download | jenkins.debian.net-7ae12d7d01d20f6e60d6ae75e938324c607dffdd.tar.xz |
reproducible: disable debug mode
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_build.sh | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index 035c9595..fbfb5bc3 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -4,7 +4,7 @@ # © 2015 Mattia Rizzolo <mattia@mapreri.org> # released under the GPLv=2 -DEBUG=true +DEBUG=false . /srv/jenkins/bin/common-functions.sh common_init "$@" @@ -303,13 +303,13 @@ choose_package () { SRCPKGID=$(echo $RESULT|cut -d "|" -f2) SRCPACKAGE=$(echo $RESULT|cut -d "|" -f3) # force debug mode for certain packages - 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 + #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) |