From 72ecd4f6fdf2b5f899c59fb7704ca17a5d26d405 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Wed, 18 Oct 2017 13:32:06 +0200 Subject: 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 --- bin/common-functions.sh | 4 ++++ 1 file changed, 4 insertions(+) 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 -- cgit v1.2.3-54-g00ecf