diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/common-functions.sh | 4 |
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 |