diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-05-18 12:24:29 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-05-18 12:24:29 +0200 |
commit | 521d4828e52f2c39f24d679816a284d638462074 (patch) | |
tree | e3a32b825e438e01272635cf1940d350c42f02bc | |
parent | d666233fe2d76fdfe66a3647f40c461524854a17 (diff) | |
download | jenkins.debian.net-521d4828e52f2c39f24d679816a284d638462074.tar.xz |
reproducible: force debug mode for certain packages, to debug false not-for-us packages
-rwxr-xr-x | bin/reproducible_build.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index a4ccfd3c..b41edd65 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -299,6 +299,10 @@ choose_package () { SUITE=$(echo $RESULT|cut -d "|" -f1) SRCPKGID=$(echo $RESULT|cut -d "|" -f2) SRCPACKAGE=$(echo $RESULT|cut -d "|" -f3) + # force debug mode for certain packages + if [ $SRCPACKAGE = "hsqldb1.8.0" ] ; then + export DEBUG=true + fi SCHEDULED_DATE=$(echo $RESULT|cut -d "|" -f4) SAVE_ARTIFACTS=$(echo $RESULT|cut -d "|" -f5) NOTIFY=$(echo $RESULT|cut -d "|" -f6) |