summaryrefslogtreecommitdiffstats
path: root/bin/common-functions.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2017-10-18 13:32:06 +0200
committerHolger Levsen <holger@layer-acht.org>2017-10-18 13:32:06 +0200
commit72ecd4f6fdf2b5f899c59fb7704ca17a5d26d405 (patch)
treeecf474d65c88ae8b6ca842fedd6be66233c29582 /bin/common-functions.sh
parent20f9b86ceb745b4682b38802c6e5e379c7926b10 (diff)
downloadjenkins.debian.net-72ecd4f6fdf2b5f899c59fb7704ca17a5d26d405.tar.xz
chroot-installs: error out early on another job due to #877970 and add debug code to see why this doesnt happen
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin/common-functions.sh')
-rwxr-xr-xbin/common-functions.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/common-functions.sh b/bin/common-functions.sh
index 91d25078..073d25c2 100755
--- a/bin/common-functions.sh
+++ b/bin/common-functions.sh
@@ -51,6 +51,7 @@ if [ "${0:0:5}" != "/tmp/" ] ; then
fi
# abort certain jobs if we know they will fail due to certain bugs…
BLOCKER=848422
+ set -x
case $JOB_NAME in
chroot-installation_*_install_design-desktop-*)
for BLOCKER in 869155 867695 ; do
@@ -64,6 +65,8 @@ if [ "${0:0:5}" != "/tmp/" ] ; then
abort_if_bug_is_still_open 874504 ;;
chroot-installation_stretch_install_full_desktop_upgrade_to_buster)
abort_if_bug_is_still_open 877970 ;;
+ chroot-installation_stretch_install_developer_upgrade_to_buster)
+ abort_if_bug_is_still_open 877970 ;;
chroot-installation_stretch_install_education-workstation_upgrade_to_buster)
abort_if_bug_is_still_open 877970 ;;
chroot-installation_stretch_install_education-standalone_upgrade_to_buster)
@@ -90,6 +93,7 @@ if [ "${0:0:5}" != "/tmp/" ] ; then
# abort_if_bug_is_still_open $BLOCKER ;;
*) ;;
esac
+ set +x
# mktemp some place for us...
TTT=$(mktemp --tmpdir=/tmp jenkins-script-XXXXXXXX)
if [ -z "$TTT" ] ; then